Struct serde_urlencoded::ser::Serializer
source · [−]pub struct Serializer<'input, 'output, Target: UrlEncodedTarget> { /* private fields */ }
Expand description
A serializer for the application/x-www-form-urlencoded
format.
-
Supported top-level inputs are structs, maps and sequences of pairs, with or without a given length.
-
Supported keys and values are integers, bytes (if convertible to strings), unit structs and unit variants.
-
Newtype structs defer to their inner values.
Implementations
sourceimpl<'input, 'output, Target: 'output + UrlEncodedTarget> Serializer<'input, 'output, Target>
impl<'input, 'output, Target: 'output + UrlEncodedTarget> Serializer<'input, 'output, Target>
sourcepub fn new(
urlencoder: &'output mut UrlEncodedSerializer<'input, Target>
) -> Self
pub fn new(
urlencoder: &'output mut UrlEncodedSerializer<'input, Target>
) -> Self
Returns a new Serializer
.
Trait Implementations
sourceimpl<'input, 'output, Target> Serializer for Serializer<'input, 'output, Target> where
Target: 'output + UrlEncodedTarget,
impl<'input, 'output, Target> Serializer for Serializer<'input, 'output, Target> where
Target: 'output + UrlEncodedTarget,
sourcefn serialize_unit(self) -> Result<Self::Ok, Error>
fn serialize_unit(self) -> Result<Self::Ok, Error>
Returns Ok
.
sourcefn serialize_unit_variant(
self,
_name: &'static str,
_variant_index: u32,
_variant: &'static str
) -> Result<Self::Ok, Error>
fn serialize_unit_variant(
self,
_name: &'static str,
_variant_index: u32,
_variant: &'static str
) -> Result<Self::Ok, Error>
Returns an error.
sourcefn serialize_newtype_struct<T: ?Sized + Serialize>(
self,
_name: &'static str,
value: &T
) -> Result<Self::Ok, Error>
fn serialize_newtype_struct<T: ?Sized + Serialize>(
self,
_name: &'static str,
value: &T
) -> Result<Self::Ok, Error>
Serializes the inner value, ignoring the newtype name.
sourcefn serialize_newtype_variant<T: ?Sized + Serialize>(
self,
_name: &'static str,
_variant_index: u32,
_variant: &'static str,
_value: &T
) -> Result<Self::Ok, Error>
fn serialize_newtype_variant<T: ?Sized + Serialize>(
self,
_name: &'static str,
_variant_index: u32,
_variant: &'static str,
_value: &T
) -> Result<Self::Ok, Error>
Returns an error.
sourcefn serialize_none(self) -> Result<Self::Ok, Error>
fn serialize_none(self) -> Result<Self::Ok, Error>
Returns Ok
.
sourcefn serialize_some<T: ?Sized + Serialize>(
self,
value: &T
) -> Result<Self::Ok, Error>
fn serialize_some<T: ?Sized + Serialize>(
self,
value: &T
) -> Result<Self::Ok, Error>
Serializes the given value.
sourcefn serialize_seq(self, _len: Option<usize>) -> Result<Self::SerializeSeq, Error>
fn serialize_seq(self, _len: Option<usize>) -> Result<Self::SerializeSeq, Error>
Serialize a sequence, given length (if any) is ignored.
sourcefn serialize_tuple(self, _len: usize) -> Result<Self::SerializeTuple, Error>
fn serialize_tuple(self, _len: usize) -> Result<Self::SerializeTuple, Error>
Returns an error.
sourcefn serialize_tuple_struct(
self,
_name: &'static str,
_len: usize
) -> Result<Self::SerializeTupleStruct, Error>
fn serialize_tuple_struct(
self,
_name: &'static str,
_len: usize
) -> Result<Self::SerializeTupleStruct, Error>
Returns an error.
sourcefn serialize_tuple_variant(
self,
_name: &'static str,
_variant_index: u32,
_variant: &'static str,
_len: usize
) -> Result<Self::SerializeTupleVariant, Error>
fn serialize_tuple_variant(
self,
_name: &'static str,
_variant_index: u32,
_variant: &'static str,
_len: usize
) -> Result<Self::SerializeTupleVariant, Error>
Returns an error.
sourcefn serialize_map(self, _len: Option<usize>) -> Result<Self::SerializeMap, Error>
fn serialize_map(self, _len: Option<usize>) -> Result<Self::SerializeMap, Error>
Serializes a map, given length is ignored.
sourcefn serialize_struct(
self,
_name: &'static str,
_len: usize
) -> Result<Self::SerializeStruct, Error>
fn serialize_struct(
self,
_name: &'static str,
_len: usize
) -> Result<Self::SerializeStruct, Error>
Serializes a struct, given length is ignored.
sourcefn serialize_struct_variant(
self,
_name: &'static str,
_variant_index: u32,
_variant: &'static str,
_len: usize
) -> Result<Self::SerializeStructVariant, Error>
fn serialize_struct_variant(
self,
_name: &'static str,
_variant_index: u32,
_variant: &'static str,
_len: usize
) -> Result<Self::SerializeStructVariant, Error>
Returns an error.
type Ok = &'output mut Serializer<'input, Target>
type Ok = &'output mut Serializer<'input, Target>
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. Read more
type SerializeSeq = SeqSerializer<'input, 'output, Target>
type SerializeSeq = SeqSerializer<'input, 'output, Target>
Type returned from serialize_seq
for serializing the content of the
sequence. Read more
type SerializeTuple = TupleSerializer<'input, 'output, Target>
type SerializeTuple = TupleSerializer<'input, 'output, Target>
Type returned from serialize_tuple
for serializing the content of
the tuple. Read more
type SerializeTupleStruct = TupleStructSerializer<'input, 'output, Target>
type SerializeTupleStruct = TupleStructSerializer<'input, 'output, Target>
Type returned from serialize_tuple_struct
for serializing the
content of the tuple struct. Read more
type SerializeTupleVariant = TupleVariantSerializer<'input, 'output, Target>
type SerializeTupleVariant = TupleVariantSerializer<'input, 'output, Target>
Type returned from serialize_tuple_variant
for serializing the
content of the tuple variant. Read more
type SerializeMap = MapSerializer<'input, 'output, Target>
type SerializeMap = MapSerializer<'input, 'output, Target>
Type returned from serialize_map
for serializing the content of the
map. Read more
type SerializeStruct = StructSerializer<'input, 'output, Target>
type SerializeStruct = StructSerializer<'input, 'output, Target>
Type returned from serialize_struct
for serializing the content of
the struct. Read more
type SerializeStructVariant = StructVariantSerializer<'input, 'output, Target>
type SerializeStructVariant = StructVariantSerializer<'input, 'output, Target>
Type returned from serialize_struct_variant
for serializing the
content of the struct variant. Read more
sourcefn 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 more
sourcefn 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 more
sourcefn 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,
Collect an iterator as a sequence. Read more
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)>,
Collect an iterator as a map. Read more
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,
Serialize a string produced by an implementation of Display
. Read more
sourcefn is_human_readable(&self) -> bool
fn is_human_readable(&self) -> bool
Determine whether Serialize
implementations should serialize in
human-readable form. Read more
Auto Trait Implementations
impl<'input, 'output, Target> !RefUnwindSafe for Serializer<'input, 'output, Target>
impl<'input, 'output, Target> !Send for Serializer<'input, 'output, Target>
impl<'input, 'output, Target> !Sync for Serializer<'input, 'output, Target>
impl<'input, 'output, Target> Unpin for Serializer<'input, 'output, Target> where
'input: 'output,
impl<'input, 'output, Target> !UnwindSafe for Serializer<'input, 'output, Target>
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more