Struct aws_smithy_json::serialize::JsonValueWriter
source · pub struct JsonValueWriter<'a> { /* private fields */ }
Implementations§
source§impl<'a> JsonValueWriter<'a>
impl<'a> JsonValueWriter<'a>
pub fn new(output: &'a mut String) -> Self
sourcepub fn string_unchecked(self, value: &str)
pub fn string_unchecked(self, value: &str)
Writes a string value
without escaping it.
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_array(self) -> JsonArrayWriter<'a>
pub fn start_array(self) -> JsonArrayWriter<'a>
Starts an array.
sourcepub fn start_object(self) -> JsonObjectWriter<'a>
pub fn start_object(self) -> JsonObjectWriter<'a>
Starts an object.
Auto Trait Implementations§
impl<'a> Freeze for JsonValueWriter<'a>
impl<'a> RefUnwindSafe for JsonValueWriter<'a>
impl<'a> Send for JsonValueWriter<'a>
impl<'a> Sync for JsonValueWriter<'a>
impl<'a> Unpin for JsonValueWriter<'a>
impl<'a> !UnwindSafe for JsonValueWriter<'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