pub struct Serializer<W: Write> {
    output: W,
    pretty: Option<(PrettyConfig, Pretty)>,
    default_extensions: Extensions,
    is_empty: Option<bool>,
    newtype_variant: bool,
    recursion_limit: Option<usize>,
    implicit_some_depth: usize,
}Expand description
The RON serializer.
You can just use to_string for deserializing a value.
If you want it pretty-printed, take a look at to_string_pretty.
Fields§
§output: W§pretty: Option<(PrettyConfig, Pretty)>§default_extensions: Extensions§is_empty: Option<bool>§newtype_variant: bool§recursion_limit: Option<usize>§implicit_some_depth: usizeImplementations§
Source§impl<W: Write> Serializer<W>
 
impl<W: Write> Serializer<W>
Sourcepub fn new(writer: W, config: Option<PrettyConfig>) -> Result<Self>
 
pub fn new(writer: W, config: Option<PrettyConfig>) -> Result<Self>
Creates a new Serializer.
Most of the time you can just use to_string or
to_string_pretty.
Sourcepub fn with_options(
    writer: W,
    config: Option<PrettyConfig>,
    options: &Options,
) -> Result<Self>
 
pub fn with_options( writer: W, config: Option<PrettyConfig>, options: &Options, ) -> Result<Self>
Creates a new Serializer.
Most of the time you can just use to_string or
to_string_pretty.
fn separate_tuple_members(&self) -> bool
fn compact_arrays(&self) -> bool
fn compact_structs(&self) -> bool
fn compact_maps(&self) -> bool
fn number_suffixes(&self) -> bool
fn extensions(&self) -> Extensions
fn escape_strings(&self) -> bool
fn start_indent(&mut self) -> Result<()>
fn indent(&mut self) -> Result
fn end_indent(&mut self) -> Result
fn serialize_escaped_str(&mut self, value: &str) -> Result
fn serialize_unescaped_or_raw_str(&mut self, value: &str) -> Result
fn serialize_escaped_byte_str(&mut self, value: &[u8]) -> Result
fn serialize_unescaped_or_raw_byte_str(&mut self, value: &str) -> Result
fn serialize_sint(&mut self, value: impl Into<i64>, suffix: &str) -> Result<()>
fn serialize_uint(&mut self, value: impl Into<u64>, suffix: &str) -> Result<()>
fn write_identifier(&mut self, name: &str) -> Result<()>
fn validate_identifier(&self, name: &str) -> Result<()>
Sourcefn struct_names(&self) -> bool
 
fn struct_names(&self) -> bool
Checks if struct names should be emitted
Note that when using the explicit_struct_names extension, this method will use an OR operation on the extension and the PrettyConfig::struct_names option. See also Extensions::EXPLICIT_STRUCT_NAMES for the extension equivalent.
Trait Implementations§
Source§impl<'a, W: Write> Serializer for &'a mut Serializer<W>
 
impl<'a, W: Write> Serializer for &'a mut Serializer<W>
Source§type Ok = ()
 
type Ok = ()
The output type produced by this 
Serializer during successful
serialization. Most serializers that produce text or binary output
should set Ok = () and serialize into an io::Write or buffer
contained within the Serializer instance. Serializers that build
in-memory data structures may be simplified by using Ok to propagate
the data structure around.Source§type SerializeMap = Compound<'a, W>
 
type SerializeMap = Compound<'a, W>
Type returned from 
serialize_map for serializing the content of the
map.Source§type SerializeSeq = Compound<'a, W>
 
type SerializeSeq = Compound<'a, W>
Type returned from 
serialize_seq for serializing the content of the
sequence.Source§type SerializeStruct = Compound<'a, W>
 
type SerializeStruct = Compound<'a, W>
Type returned from 
serialize_struct for serializing the content of
the struct.Source§type SerializeStructVariant = Compound<'a, W>
 
type SerializeStructVariant = Compound<'a, W>
Type returned from 
serialize_struct_variant for serializing the
content of the struct variant.Source§type SerializeTuple = Compound<'a, W>
 
type SerializeTuple = Compound<'a, W>
Type returned from 
serialize_tuple for serializing the content of
the tuple.Source§type SerializeTupleStruct = Compound<'a, W>
 
type SerializeTupleStruct = Compound<'a, W>
Type returned from 
serialize_tuple_struct for serializing the
content of the tuple struct.Source§type SerializeTupleVariant = Compound<'a, W>
 
type SerializeTupleVariant = Compound<'a, W>
Type returned from 
serialize_tuple_variant for serializing the
content of the tuple variant.Source§fn serialize_bytes(self, v: &[u8]) -> Result<()>
 
fn serialize_bytes(self, v: &[u8]) -> Result<()>
Serialize a chunk of raw byte data. Read more
Source§fn serialize_unit_variant(
    self,
    name: &'static str,
    _variant_index: u32,
    variant: &'static str,
) -> Result<()>
 
fn serialize_unit_variant( self, name: &'static str, _variant_index: u32, variant: &'static str, ) -> Result<()>
Source§fn serialize_newtype_struct<T>(
    self,
    name: &'static str,
    value: &T,
) -> Result<()>
 
fn serialize_newtype_struct<T>( self, name: &'static str, value: &T, ) -> Result<()>
Serialize a newtype struct like 
struct Millimeters(u8). Read moreSource§fn serialize_newtype_variant<T>(
    self,
    name: &'static str,
    _variant_index: u32,
    variant: &'static str,
    value: &T,
) -> Result<()>
 
fn serialize_newtype_variant<T>( self, name: &'static str, _variant_index: u32, variant: &'static str, value: &T, ) -> Result<()>
Source§fn serialize_seq(self, len: Option<usize>) -> Result<Self::SerializeSeq>
 
fn serialize_seq(self, len: Option<usize>) -> Result<Self::SerializeSeq>
Begin to serialize a variably sized sequence. This call must be
followed by zero or more calls to 
serialize_element, then a call to
end. Read moreSource§fn serialize_tuple(self, len: usize) -> Result<Self::SerializeTuple>
 
fn serialize_tuple(self, len: usize) -> Result<Self::SerializeTuple>
Begin to serialize a statically sized sequence whose length will be
known at deserialization time without looking at the serialized data.
This call must be followed by zero or more calls to 
serialize_element,
then a call to end. Read moreSource§fn serialize_tuple_struct(
    self,
    name: &'static str,
    len: usize,
) -> Result<Self::SerializeTupleStruct>
 
fn serialize_tuple_struct( self, name: &'static str, len: usize, ) -> Result<Self::SerializeTupleStruct>
Begin to serialize a tuple struct like 
struct Rgb(u8, u8, u8). This
call must be followed by zero or more calls to serialize_field, then a
call to end. Read moreSource§fn serialize_tuple_variant(
    self,
    name: &'static str,
    _variant_index: u32,
    variant: &'static str,
    len: usize,
) -> Result<Self::SerializeTupleVariant>
 
fn serialize_tuple_variant( self, name: &'static str, _variant_index: u32, variant: &'static str, len: usize, ) -> Result<Self::SerializeTupleVariant>
Begin to serialize a tuple variant like 
E::T in enum E { T(u8, u8) }. This call must be followed by zero or more calls to
serialize_field, then a call to end. Read moreSource§fn serialize_map(self, len: Option<usize>) -> Result<Self::SerializeMap>
 
fn serialize_map(self, len: Option<usize>) -> Result<Self::SerializeMap>
Begin to serialize a map. This call must be followed by zero or more
calls to 
serialize_key and serialize_value, then a call to end. Read moreSource§fn serialize_struct(
    self,
    name: &'static str,
    len: usize,
) -> Result<Self::SerializeStruct>
 
fn serialize_struct( self, name: &'static str, len: usize, ) -> Result<Self::SerializeStruct>
Begin to serialize a struct like 
struct Rgb { r: u8, g: u8, b: u8 }.
This call must be followed by zero or more calls to serialize_field,
then a call to end. Read moreSource§fn serialize_struct_variant(
    self,
    name: &'static str,
    _variant_index: u32,
    variant: &'static str,
    len: usize,
) -> Result<Self::SerializeStructVariant>
 
fn serialize_struct_variant( self, name: &'static str, _variant_index: u32, variant: &'static str, len: usize, ) -> Result<Self::SerializeStructVariant>
Begin to serialize a struct variant like 
E::S in enum E { S { r: u8, g: u8, b: u8 } }. This call must be followed by zero or more calls to
serialize_field, then a call to end. Read moreSource§fn serialize_i128(self, v: i128) -> Result<Self::Ok, Self::Error>
 
fn serialize_i128(self, v: i128) -> Result<Self::Ok, Self::Error>
Serialize an 
i128 value. Read moreSource§fn serialize_u128(self, v: u128) -> Result<Self::Ok, Self::Error>
 
fn serialize_u128(self, v: u128) -> Result<Self::Ok, Self::Error>
Serialize a 
u128 value. Read moreSource§fn collect_seq<I>(self, iter: I) -> Result<Self::Ok, Self::Error>
 
fn collect_seq<I>(self, iter: I) -> Result<Self::Ok, Self::Error>
Collect an iterator as a sequence. Read more
Source§fn collect_map<K, V, I>(self, iter: I) -> Result<Self::Ok, Self::Error>
 
fn collect_map<K, V, I>(self, iter: I) -> Result<Self::Ok, Self::Error>
Collect an iterator as a map. Read more
Source§fn collect_str<T>(self, value: &T) -> Result<Self::Ok, Self::Error>
 
fn collect_str<T>(self, value: &T) -> Result<Self::Ok, Self::Error>
Serialize a string produced by an implementation of 
Display. Read moreSource§fn is_human_readable(&self) -> bool
 
fn is_human_readable(&self) -> bool
Determine whether 
Serialize implementations should serialize in
human-readable form. Read moreAuto Trait Implementations§
impl<W> Freeze for Serializer<W>where
    W: Freeze,
impl<W> RefUnwindSafe for Serializer<W>where
    W: RefUnwindSafe,
impl<W> Send for Serializer<W>where
    W: Send,
impl<W> Sync for Serializer<W>where
    W: Sync,
impl<W> Unpin for Serializer<W>where
    W: Unpin,
impl<W> UnwindSafe for Serializer<W>where
    W: UnwindSafe,
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