pub struct Serializer<W>where
W: Write,{ /* private fields */ }
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
.
Implementations§
Source§impl<W> Serializer<W>where
W: Write,
impl<W> Serializer<W>where
W: Write,
Sourcepub fn new(
writer: W,
config: Option<PrettyConfig>,
) -> Result<Serializer<W>, Error>
pub fn new( writer: W, config: Option<PrettyConfig>, ) -> Result<Serializer<W>, Error>
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<Serializer<W>, Error>
pub fn with_options( writer: W, config: Option<PrettyConfig>, options: Options, ) -> Result<Serializer<W>, Error>
Creates a new Serializer
.
Most of the time you can just use to_string
or
to_string_pretty
.
Trait Implementations§
Source§impl<'a, W> Serializer for &'a mut Serializer<W>where
W: Write,
impl<'a, W> Serializer for &'a mut Serializer<W>where
W: Write,
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<(), Error>
fn serialize_bytes(self, v: &[u8]) -> Result<(), Error>
Serialize a chunk of raw byte data. Read more
Source§fn serialize_unit_variant(
self,
_: &'static str,
_: u32,
variant: &'static str,
) -> Result<(), Error>
fn serialize_unit_variant( self, _: &'static str, _: u32, variant: &'static str, ) -> Result<(), Error>
Source§fn serialize_newtype_struct<T>(
self,
name: &'static str,
value: &T,
) -> Result<(), Error>
fn serialize_newtype_struct<T>( self, name: &'static str, value: &T, ) -> Result<(), Error>
Serialize a newtype struct like
struct Millimeters(u8)
. Read moreSource§fn serialize_newtype_variant<T>(
self,
_: &'static str,
_: u32,
variant: &'static str,
value: &T,
) -> Result<(), Error>
fn serialize_newtype_variant<T>( self, _: &'static str, _: u32, variant: &'static str, value: &T, ) -> Result<(), Error>
Source§fn serialize_seq(
self,
len: Option<usize>,
) -> Result<<&'a mut Serializer<W> as Serializer>::SerializeSeq, Error>
fn serialize_seq( self, len: Option<usize>, ) -> Result<<&'a mut Serializer<W> as Serializer>::SerializeSeq, Error>
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<<&'a mut Serializer<W> as Serializer>::SerializeTuple, Error>
fn serialize_tuple( self, len: usize, ) -> Result<<&'a mut Serializer<W> as Serializer>::SerializeTuple, Error>
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<<&'a mut Serializer<W> as Serializer>::SerializeTupleStruct, Error>
fn serialize_tuple_struct( self, name: &'static str, len: usize, ) -> Result<<&'a mut Serializer<W> as Serializer>::SerializeTupleStruct, Error>
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,
_: &'static str,
_: u32,
variant: &'static str,
len: usize,
) -> Result<<&'a mut Serializer<W> as Serializer>::SerializeTupleVariant, Error>
fn serialize_tuple_variant( self, _: &'static str, _: u32, variant: &'static str, len: usize, ) -> Result<<&'a mut Serializer<W> as Serializer>::SerializeTupleVariant, Error>
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<<&'a mut Serializer<W> as Serializer>::SerializeMap, Error>
fn serialize_map( self, len: Option<usize>, ) -> Result<<&'a mut Serializer<W> as Serializer>::SerializeMap, Error>
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<<&'a mut Serializer<W> as Serializer>::SerializeStruct, Error>
fn serialize_struct( self, name: &'static str, len: usize, ) -> Result<<&'a mut Serializer<W> as Serializer>::SerializeStruct, Error>
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,
_: &'static str,
_: u32,
variant: &'static str,
len: usize,
) -> Result<<&'a mut Serializer<W> as Serializer>::SerializeStructVariant, Error>
fn serialize_struct_variant( self, _: &'static str, _: u32, variant: &'static str, len: usize, ) -> Result<<&'a mut Serializer<W> as Serializer>::SerializeStructVariant, Error>
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>
Available on crate features
std
or alloc
only.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, U> AsBindGroupShaderType<U> for T
impl<T, U> AsBindGroupShaderType<U> for T
Source§fn as_bind_group_shader_type(&self, _images: &RenderAssets<GpuImage>) -> U
fn as_bind_group_shader_type(&self, _images: &RenderAssets<GpuImage>) -> U
Return the
T
ShaderType
for self
. When used in AsBindGroup
derives, it is safe to assume that all images in self
exist.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
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.Source§impl<T> DowncastSync for T
impl<T> DowncastSync for T
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§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