Struct toml::ser::Serializer
source · [−]#[non_exhaustive]pub struct Serializer<'d> { /* private fields */ }
Expand description
Serialization for TOML documents.
This structure implements serialization support for TOML to serialize an arbitrary type to TOML. Note that the TOML format does not support all datatypes in Rust, such as enums, tuples, and tuple structs. These types will generate an error when serialized.
Currently a serializer always writes its output to an in-memory String
,
which is passed in when creating the serializer itself.
To serialize TOML values, instead of documents, see ValueSerializer
.
Implementations
sourceimpl<'d> Serializer<'d>
impl<'d> Serializer<'d>
sourcepub fn new(dst: &'d mut String) -> Self
pub fn new(dst: &'d mut String) -> Self
Creates a new serializer which will emit TOML into the buffer provided.
The serializer can then be used to serialize a type after which the data
will be present in dst
.
sourcepub fn pretty(dst: &'d mut String) -> Self
pub fn pretty(dst: &'d mut String) -> Self
Apply a default “pretty” policy to the document
For greater customization, instead serialize to a
toml_edit::Document
.
Trait Implementations
sourceimpl<'d> Serializer for Serializer<'d>
impl<'d> Serializer for Serializer<'d>
type Ok = ()
type Ok = ()
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. Read moretype SerializeSeq = SerializeDocumentArray<'d>
type SerializeSeq = SerializeDocumentArray<'d>
serialize_seq
for serializing the content of the
sequence. Read moretype SerializeTuple = SerializeDocumentArray<'d>
type SerializeTuple = SerializeDocumentArray<'d>
serialize_tuple
for serializing the content of
the tuple. Read moretype SerializeTupleStruct = SerializeDocumentArray<'d>
type SerializeTupleStruct = SerializeDocumentArray<'d>
serialize_tuple_struct
for serializing the
content of the tuple struct. Read moretype SerializeTupleVariant = SerializeDocumentArray<'d>
type SerializeTupleVariant = SerializeDocumentArray<'d>
serialize_tuple_variant
for serializing the
content of the tuple variant. Read moretype SerializeMap = SerializeDocumentTable<'d>
type SerializeMap = SerializeDocumentTable<'d>
serialize_map
for serializing the content of the
map. Read moretype SerializeStruct = SerializeDocumentTable<'d>
type SerializeStruct = SerializeDocumentTable<'d>
serialize_struct
for serializing the content of
the struct. Read moretype SerializeStructVariant = Impossible<<Serializer<'d> as Serializer>::Ok, <Serializer<'d> as Serializer>::Error>
type SerializeStructVariant = Impossible<<Serializer<'d> as Serializer>::Ok, <Serializer<'d> as Serializer>::Error>
serialize_struct_variant
for serializing the
content of the struct variant. Read moresourcefn serialize_bool(self, v: bool) -> Result<Self::Ok, Self::Error>
fn serialize_bool(self, v: bool) -> Result<Self::Ok, Self::Error>
bool
value. Read moresourcefn serialize_i16(self, v: i16) -> Result<Self::Ok, Self::Error>
fn serialize_i16(self, v: i16) -> Result<Self::Ok, Self::Error>
i16
value. Read moresourcefn serialize_i32(self, v: i32) -> Result<Self::Ok, Self::Error>
fn serialize_i32(self, v: i32) -> Result<Self::Ok, Self::Error>
i32
value. Read moresourcefn serialize_i64(self, v: i64) -> Result<Self::Ok, Self::Error>
fn serialize_i64(self, v: i64) -> Result<Self::Ok, Self::Error>
i64
value. Read moresourcefn serialize_u16(self, v: u16) -> Result<Self::Ok, Self::Error>
fn serialize_u16(self, v: u16) -> Result<Self::Ok, Self::Error>
u16
value. Read moresourcefn serialize_u32(self, v: u32) -> Result<Self::Ok, Self::Error>
fn serialize_u32(self, v: u32) -> Result<Self::Ok, Self::Error>
u32
value. Read moresourcefn serialize_u64(self, v: u64) -> Result<Self::Ok, Self::Error>
fn serialize_u64(self, v: u64) -> Result<Self::Ok, Self::Error>
u64
value. Read moresourcefn serialize_f32(self, v: f32) -> Result<Self::Ok, Self::Error>
fn serialize_f32(self, v: f32) -> Result<Self::Ok, Self::Error>
f32
value. Read moresourcefn serialize_f64(self, v: f64) -> Result<Self::Ok, Self::Error>
fn serialize_f64(self, v: f64) -> Result<Self::Ok, Self::Error>
f64
value. Read moresourcefn serialize_char(self, v: char) -> Result<Self::Ok, Self::Error>
fn serialize_char(self, v: char) -> Result<Self::Ok, Self::Error>
sourcefn serialize_bytes(self, v: &[u8]) -> Result<Self::Ok, Self::Error>
fn serialize_bytes(self, v: &[u8]) -> Result<Self::Ok, Self::Error>
sourcefn serialize_unit_variant(
self,
name: &'static str,
variant_index: u32,
variant: &'static str
) -> Result<Self::Ok, Self::Error>
fn serialize_unit_variant(
self,
name: &'static str,
variant_index: u32,
variant: &'static str
) -> Result<Self::Ok, Self::Error>
sourcefn serialize_newtype_struct<T: ?Sized>(
self,
name: &'static str,
v: &T
) -> Result<Self::Ok, Self::Error>where
T: Serialize,
fn serialize_newtype_struct<T: ?Sized>(
self,
name: &'static str,
v: &T
) -> Result<Self::Ok, Self::Error>where
T: Serialize,
struct Millimeters(u8)
. Read moresourcefn serialize_newtype_variant<T: ?Sized>(
self,
name: &'static str,
variant_index: u32,
variant: &'static str,
value: &T
) -> Result<Self::Ok, Self::Error>where
T: Serialize,
fn serialize_newtype_variant<T: ?Sized>(
self,
name: &'static str,
variant_index: u32,
variant: &'static str,
value: &T
) -> Result<Self::Ok, Self::Error>where
T: Serialize,
sourcefn serialize_seq(
self,
len: Option<usize>
) -> Result<Self::SerializeSeq, Self::Error>
fn serialize_seq(
self,
len: Option<usize>
) -> Result<Self::SerializeSeq, Self::Error>
serialize_element
, then a call to
end
. Read moresourcefn serialize_tuple(self, len: usize) -> Result<Self::SerializeTuple, Self::Error>
fn serialize_tuple(self, len: usize) -> Result<Self::SerializeTuple, Self::Error>
serialize_element
,
then a call to end
. Read moresourcefn serialize_tuple_struct(
self,
_name: &'static str,
len: usize
) -> Result<Self::SerializeTupleStruct, Self::Error>
fn serialize_tuple_struct(
self,
_name: &'static str,
len: usize
) -> Result<Self::SerializeTupleStruct, Self::Error>
struct Rgb(u8, u8, u8)
. This
call must be followed by zero or more calls to serialize_field
, then a
call to end
. Read moresourcefn serialize_tuple_variant(
self,
_name: &'static str,
_variant_index: u32,
_variant: &'static str,
len: usize
) -> Result<Self::SerializeTupleVariant, Self::Error>
fn serialize_tuple_variant(
self,
_name: &'static str,
_variant_index: u32,
_variant: &'static str,
len: usize
) -> Result<Self::SerializeTupleVariant, Self::Error>
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 moresourcefn serialize_map(
self,
len: Option<usize>
) -> Result<Self::SerializeMap, Self::Error>
fn serialize_map(
self,
len: Option<usize>
) -> Result<Self::SerializeMap, Self::Error>
serialize_key
and serialize_value
, then a call to end
. Read moresourcefn serialize_struct(
self,
_name: &'static str,
len: usize
) -> Result<Self::SerializeStruct, Self::Error>
fn serialize_struct(
self,
_name: &'static str,
len: usize
) -> Result<Self::SerializeStruct, Self::Error>
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 moresourcefn serialize_struct_variant(
self,
name: &'static str,
_variant_index: u32,
_variant: &'static str,
_len: usize
) -> Result<Self::SerializeStructVariant, Self::Error>
fn serialize_struct_variant(
self,
name: &'static str,
_variant_index: u32,
_variant: &'static str,
_len: usize
) -> Result<Self::SerializeStructVariant, Self::Error>
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 moresourcefn serialize_i128(self, v: i128) -> Result<Self::Ok, Self::Error>
fn serialize_i128(self, v: i128) -> Result<Self::Ok, Self::Error>
i128
value. Read moresourcefn serialize_u128(self, v: u128) -> Result<Self::Ok, Self::Error>
fn serialize_u128(self, v: u128) -> Result<Self::Ok, Self::Error>
u128
value. Read moresourcefn collect_seq<I>(self, iter: I) -> Result<Self::Ok, Self::Error>where
I: IntoIterator,
<I as IntoIterator>::Item: Serialize,
fn collect_seq<I>(self, iter: I) -> Result<Self::Ok, Self::Error>where
I: IntoIterator,
<I as IntoIterator>::Item: Serialize,
sourcefn collect_map<K, V, I>(self, iter: I) -> Result<Self::Ok, Self::Error>where
K: Serialize,
V: Serialize,
I: IntoIterator<Item = (K, V)>,
fn collect_map<K, V, I>(self, iter: I) -> Result<Self::Ok, Self::Error>where
K: Serialize,
V: Serialize,
I: IntoIterator<Item = (K, V)>,
sourcefn collect_str<T>(self, value: &T) -> Result<Self::Ok, Self::Error>where
T: Display + ?Sized,
fn collect_str<T>(self, value: &T) -> Result<Self::Ok, Self::Error>where
T: Display + ?Sized,
Display
. Read moresourcefn is_human_readable(&self) -> bool
fn is_human_readable(&self) -> bool
Serialize
implementations should serialize in
human-readable form. Read more