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.