Struct aws_smithy_query::QueryValueWriter
source · pub struct QueryValueWriter<'a> { /* private fields */ }
Implementations§
source§impl<'a> QueryValueWriter<'a>
impl<'a> QueryValueWriter<'a>
pub fn new(output: &'a mut String, prefix: Cow<'a, str>) -> QueryValueWriter<'a>
sourcepub fn prefix(&mut self, prefix: &'a str) -> QueryValueWriter<'_>
pub fn prefix(&mut self, prefix: &'a str) -> QueryValueWriter<'_>
Starts a new prefix.
sourcepub fn date_time(
self,
date_time: &DateTime,
format: Format,
) -> Result<(), DateTimeFormatError>
pub fn date_time( self, date_time: &DateTime, format: Format, ) -> Result<(), DateTimeFormatError>
Writes a date-time value
with the given format
.
sourcepub fn start_map(
self,
flat: bool,
key_name: &'static str,
value_name: &'static str,
) -> QueryMapWriter<'a>
pub fn start_map( self, flat: bool, key_name: &'static str, value_name: &'static str, ) -> QueryMapWriter<'a>
Starts a map.
sourcepub fn start_list(
self,
flat: bool,
member_override: Option<&'a str>,
) -> QueryListWriter<'a>
pub fn start_list( self, flat: bool, member_override: Option<&'a str>, ) -> QueryListWriter<'a>
Starts a list.
Auto Trait Implementations§
impl<'a> Freeze for QueryValueWriter<'a>
impl<'a> RefUnwindSafe for QueryValueWriter<'a>
impl<'a> Send for QueryValueWriter<'a>
impl<'a> Sync for QueryValueWriter<'a>
impl<'a> Unpin for QueryValueWriter<'a>
impl<'a> !UnwindSafe for QueryValueWriter<'a>
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more