[−][src]Struct serde_json::ser::Serializer
A structure for serializing Rust values into JSON.
Methods
impl<W> Serializer<W> where
W: Write, [src]
impl<W> Serializer<W> where
W: Write, impl<'a, W> Serializer<W, PrettyFormatter<'a>> where
W: Write, [src]
impl<'a, W> Serializer<W, PrettyFormatter<'a>> where
W: Write, impl<W, F> Serializer<W, F> where
W: Write,
F: Formatter, [src]
impl<W, F> Serializer<W, F> where
W: Write,
F: Formatter, pub fn with_formatter(writer: W, formatter: F) -> Self[src]
pub fn with_formatter(writer: W, formatter: F) -> SelfCreates a new JSON visitor whose output will be written to the writer specified.
pub fn into_inner(self) -> W[src]
pub fn into_inner(self) -> WUnwrap the Writer from the Serializer.
Trait Implementations
impl<W, F> Serializer for Serializer<W, F> where
W: Write,
F: Formatter, [src]
impl<W, F> Serializer for Serializer<W, F> where
W: Write,
F: Formatter, type Error = Error
The error type that can be returned if some error occurs during serialization.
type SeqState = State
A state object that is initialized by serialize_seq, passed to serialize_seq_elt, and consumed by serialize_seq_end. Use () if no state is required. Read more
type TupleState = State
A state object that is initialized by serialize_tuple, passed to serialize_tuple_elt, and consumed by serialize_tuple_end. Use () if no state is required. Read more
type TupleStructState = State
A state object that is initialized by serialize_tuple_struct, passed to serialize_tuple_struct_elt, and consumed by serialize_tuple_struct_end. Use () if no state is required. Read more
type TupleVariantState = State
A state object that is initialized by serialize_tuple_variant, passed to serialize_tuple_variant_elt, and consumed by serialize_tuple_variant_end. Use () if no state is required. Read more
type MapState = State
A state object that is initialized by serialize_map, passed to serialize_map_elt, and consumed by serialize_map_end. Use () if no state is required. Read more
type StructState = State
A state object that is initialized by serialize_struct, passed to serialize_struct_elt, and consumed by serialize_struct_end. Use () if no state is required. Read more
type StructVariantState = State
A state object that is initialized by serialize_struct_variant, passed to serialize_struct_variant_elt, and consumed by serialize_struct_variant_end. Use () if no state is required. Read more
fn serialize_bool(&mut self, value: bool) -> Result<()>[src]
fn serialize_bool(&mut self, value: bool) -> Result<()>Serializes a bool value.
fn serialize_isize(&mut self, value: isize) -> Result<()>[src]
fn serialize_isize(&mut self, value: isize) -> Result<()>Serializes an isize value. If the format does not differentiate between isize and i64, a reasonable implementation would be to cast the value to i64 and forward to serialize_i64. Read more
fn serialize_i8(&mut self, value: i8) -> Result<()>[src]
fn serialize_i8(&mut self, value: i8) -> Result<()>Serializes an i8 value. If the format does not differentiate between i8 and i64, a reasonable implementation would be to cast the value to i64 and forward to serialize_i64. Read more
fn serialize_i16(&mut self, value: i16) -> Result<()>[src]
fn serialize_i16(&mut self, value: i16) -> Result<()>Serializes an i16 value. If the format does not differentiate between i16 and i64, a reasonable implementation would be to cast the value to i64 and forward to serialize_i64. Read more
fn serialize_i32(&mut self, value: i32) -> Result<()>[src]
fn serialize_i32(&mut self, value: i32) -> Result<()>Serializes an i32 value. If the format does not differentiate between i32 and i64, a reasonable implementation would be to cast the value to i64 and forward to serialize_i64. Read more
fn serialize_i64(&mut self, value: i64) -> Result<()>[src]
fn serialize_i64(&mut self, value: i64) -> Result<()>Serializes an i64 value.
fn serialize_usize(&mut self, value: usize) -> Result<()>[src]
fn serialize_usize(&mut self, value: usize) -> Result<()>Serializes a usize value. If the format does not differentiate between usize and u64, a reasonable implementation would be to cast the value to u64 and forward to serialize_u64. Read more
fn serialize_u8(&mut self, value: u8) -> Result<()>[src]
fn serialize_u8(&mut self, value: u8) -> Result<()>Serializes a u8 value. If the format does not differentiate between u8 and u64, a reasonable implementation would be to cast the value to u64 and forward to serialize_u64. Read more
fn serialize_u16(&mut self, value: u16) -> Result<()>[src]
fn serialize_u16(&mut self, value: u16) -> Result<()>Serializes a u16 value. If the format does not differentiate between u16 and u64, a reasonable implementation would be to cast the value to u64 and forward to serialize_u64. Read more
fn serialize_u32(&mut self, value: u32) -> Result<()>[src]
fn serialize_u32(&mut self, value: u32) -> Result<()>Serializes a u32 value. If the format does not differentiate between u32 and u64, a reasonable implementation would be to cast the value to u64 and forward to serialize_u64. Read more
fn serialize_u64(&mut self, value: u64) -> Result<()>[src]
fn serialize_u64(&mut self, value: u64) -> Result<()>Serializes au64` value.
fn serialize_f32(&mut self, value: f32) -> Result<()>[src]
fn serialize_f32(&mut self, value: f32) -> Result<()>Serializes an f32 value. If the format does not differentiate between f32 and f64, a reasonable implementation would be to cast the value to f64 and forward to serialize_f64. Read more
fn serialize_f64(&mut self, value: f64) -> Result<()>[src]
fn serialize_f64(&mut self, value: f64) -> Result<()>Serializes an f64 value.
fn serialize_char(&mut self, value: char) -> Result<()>[src]
fn serialize_char(&mut self, value: char) -> Result<()>Serializes a character. If the format does not support characters, it is reasonable to serialize it as a single element str or a u32. Read more
fn serialize_str(&mut self, value: &str) -> Result<()>[src]
fn serialize_str(&mut self, value: &str) -> Result<()>Serializes a &str.
fn serialize_bytes(&mut self, value: &[u8]) -> Result<()>[src]
fn serialize_bytes(&mut self, value: &[u8]) -> Result<()>Enables serializers to serialize byte slices more compactly or more efficiently than other types of slices. If no efficient implementation is available, a reasonable implementation would be to forward to serialize_seq. If forwarded, the implementation looks usually just like this: rust let mut state = try!(self.serialize_seq(value)); for b in value { try!(self.serialize_seq_elt(&mut state, b)); } self.serialize_seq_end(state) Read more
fn serialize_unit(&mut self) -> Result<()>[src]
fn serialize_unit(&mut self) -> Result<()>Serializes a () value. It's reasonable to just not serialize anything.
fn serialize_unit_struct(&mut self, _name: &'static str) -> Result<()>[src]
fn serialize_unit_struct(&mut self, _name: &'static str) -> Result<()>Serializes a unit struct value. A reasonable implementation would be to forward to serialize_unit. Read more
fn serialize_unit_variant(
&mut self,
_name: &'static str,
_variant_index: usize,
variant: &'static str
) -> Result<()>[src]
fn serialize_unit_variant(
&mut self,
_name: &'static str,
_variant_index: usize,
variant: &'static str
) -> Result<()>Serializes a unit variant, otherwise known as a variant with no arguments. A reasonable implementation would be to forward to serialize_unit. Read more
fn serialize_newtype_struct<T>(
&mut self,
_name: &'static str,
value: T
) -> Result<()> where
T: Serialize, [src]
fn serialize_newtype_struct<T>(
&mut self,
_name: &'static str,
value: T
) -> Result<()> where
T: Serialize, Serialize newtypes without an object wrapper.
fn serialize_newtype_variant<T>(
&mut self,
_name: &'static str,
_variant_index: usize,
variant: &'static str,
value: T
) -> Result<()> where
T: Serialize, [src]
fn serialize_newtype_variant<T>(
&mut self,
_name: &'static str,
_variant_index: usize,
variant: &'static str,
value: T
) -> Result<()> where
T: Serialize, Allows a variant with a single item to be more efficiently serialized than a variant with multiple items. A reasonable implementation would be to forward to serialize_tuple_variant. Read more
fn serialize_none(&mut self) -> Result<()>[src]
fn serialize_none(&mut self) -> Result<()>Serializes a None value.
fn serialize_some<T>(&mut self, value: T) -> Result<()> where
T: Serialize, [src]
fn serialize_some<T>(&mut self, value: T) -> Result<()> where
T: Serialize, Serializes a Some(...) value.
fn serialize_seq(&mut self, len: Option<usize>) -> Result<State>[src]
fn serialize_seq(&mut self, len: Option<usize>) -> Result<State>Begins to serialize a sequence. This call must be followed by zero or more calls to serialize_seq_elt, then a call to serialize_seq_end. Read more
fn serialize_seq_elt<T: Serialize>(
&mut self,
state: &mut State,
value: T
) -> Result<()> where
T: Serialize, [src]
fn serialize_seq_elt<T: Serialize>(
&mut self,
state: &mut State,
value: T
) -> Result<()> where
T: Serialize, Serializes a sequence element. Must have previously called serialize_seq. Read more
fn serialize_seq_end(&mut self, state: State) -> Result<()>[src]
fn serialize_seq_end(&mut self, state: State) -> Result<()>Finishes serializing a sequence.
fn serialize_seq_fixed_size(&mut self, size: usize) -> Result<State>[src]
fn serialize_seq_fixed_size(&mut self, size: usize) -> Result<State>Begins to serialize a sequence whose length will be known at deserialization time. This call must be followed by zero or more calls to serialize_seq_elt, then a call to serialize_seq_end. A reasonable implementation would be to forward to serialize_seq. Read more
fn serialize_tuple(&mut self, len: usize) -> Result<State>[src]
fn serialize_tuple(&mut self, len: usize) -> Result<State>Begins to serialize a tuple. This call must be followed by zero or more calls to serialize_tuple_elt, then a call to serialize_tuple_end. A reasonable implementation would be to forward to serialize_seq. Read more
fn serialize_tuple_elt<T: Serialize>(
&mut self,
state: &mut State,
value: T
) -> Result<()>[src]
fn serialize_tuple_elt<T: Serialize>(
&mut self,
state: &mut State,
value: T
) -> Result<()>Serializes a tuple element. Must have previously called serialize_tuple. Read more
fn serialize_tuple_end(&mut self, state: State) -> Result<()>[src]
fn serialize_tuple_end(&mut self, state: State) -> Result<()>Finishes serializing a tuple.
fn serialize_tuple_struct(
&mut self,
_name: &'static str,
len: usize
) -> Result<State>[src]
fn serialize_tuple_struct(
&mut self,
_name: &'static str,
len: usize
) -> Result<State>Begins to serialize a tuple struct. This call must be followed by zero or more calls to serialize_tuple_struct_elt, then a call to serialize_tuple_struct_end. A reasonable implementation would be to forward to serialize_tuple. Read more
fn serialize_tuple_struct_elt<T: Serialize>(
&mut self,
state: &mut State,
value: T
) -> Result<()>[src]
fn serialize_tuple_struct_elt<T: Serialize>(
&mut self,
state: &mut State,
value: T
) -> Result<()>Serializes a tuple struct element. Must have previously called serialize_tuple_struct. Read more
fn serialize_tuple_struct_end(&mut self, state: State) -> Result<()>[src]
fn serialize_tuple_struct_end(&mut self, state: State) -> Result<()>Finishes serializing a tuple struct.
fn serialize_tuple_variant(
&mut self,
_name: &'static str,
_variant_index: usize,
variant: &'static str,
len: usize
) -> Result<State>[src]
fn serialize_tuple_variant(
&mut self,
_name: &'static str,
_variant_index: usize,
variant: &'static str,
len: usize
) -> Result<State>Begins to serialize a tuple variant. This call must be followed by zero or more calls to serialize_tuple_variant_elt, then a call to serialize_tuple_variant_end. A reasonable implementation would be to forward to serialize_tuple_struct. Read more
fn serialize_tuple_variant_elt<T: Serialize>(
&mut self,
state: &mut State,
value: T
) -> Result<()>[src]
fn serialize_tuple_variant_elt<T: Serialize>(
&mut self,
state: &mut State,
value: T
) -> Result<()>Serializes a tuple variant element. Must have previously called serialize_tuple_variant. Read more
fn serialize_tuple_variant_end(&mut self, state: State) -> Result<()>[src]
fn serialize_tuple_variant_end(&mut self, state: State) -> Result<()>Finishes serializing a tuple variant.
fn serialize_map(&mut self, len: Option<usize>) -> Result<State>[src]
fn serialize_map(&mut self, len: Option<usize>) -> Result<State>Begins to serialize a map. This call must be followed by zero or more calls to serialize_map_key and serialize_map_value, then a call to serialize_map_end. Read more
fn serialize_map_key<T: Serialize>(
&mut self,
state: &mut State,
key: T
) -> Result<()>[src]
fn serialize_map_key<T: Serialize>(
&mut self,
state: &mut State,
key: T
) -> Result<()>Serialize a map key. Must have previously called serialize_map.
fn serialize_map_value<T: Serialize>(
&mut self,
_: &mut State,
value: T
) -> Result<()>[src]
fn serialize_map_value<T: Serialize>(
&mut self,
_: &mut State,
value: T
) -> Result<()>Serialize a map value. Must have previously called serialize_map.
fn serialize_map_end(&mut self, state: State) -> Result<()>[src]
fn serialize_map_end(&mut self, state: State) -> Result<()>Finishes serializing a map.
fn serialize_struct(&mut self, _name: &'static str, len: usize) -> Result<State>[src]
fn serialize_struct(&mut self, _name: &'static str, len: usize) -> Result<State>Begins to serialize a struct. This call must be followed by zero or more calls to serialize_struct_elt, then a call to serialize_struct_end. Read more
fn serialize_struct_elt<V: Serialize>(
&mut self,
state: &mut State,
key: &'static str,
value: V
) -> Result<()>[src]
fn serialize_struct_elt<V: Serialize>(
&mut self,
state: &mut State,
key: &'static str,
value: V
) -> Result<()>Serializes a struct field. Must have previously called serialize_struct. Read more
fn serialize_struct_end(&mut self, state: State) -> Result<()>[src]
fn serialize_struct_end(&mut self, state: State) -> Result<()>Finishes serializing a struct.
fn serialize_struct_variant(
&mut self,
_name: &'static str,
_variant_index: usize,
variant: &'static str,
len: usize
) -> Result<State>[src]
fn serialize_struct_variant(
&mut self,
_name: &'static str,
_variant_index: usize,
variant: &'static str,
len: usize
) -> Result<State>Begins to serialize a struct variant. This call must be followed by zero or more calls to serialize_struct_variant_elt, then a call to serialize_struct_variant_end. Read more
fn serialize_struct_variant_elt<V: Serialize>(
&mut self,
state: &mut State,
key: &'static str,
value: V
) -> Result<()>[src]
fn serialize_struct_variant_elt<V: Serialize>(
&mut self,
state: &mut State,
key: &'static str,
value: V
) -> Result<()>Serialize a struct variant element. Must have previously called serialize_struct_variant. Read more
fn serialize_struct_variant_end(&mut self, state: State) -> Result<()>[src]
fn serialize_struct_variant_end(&mut self, state: State) -> Result<()>Finishes serializing a struct variant.
Auto Trait Implementations
impl<W, F> Send for Serializer<W, F> where
F: Send,
W: Send,
impl<W, F> Send for Serializer<W, F> where
F: Send,
W: Send, impl<W, F> Sync for Serializer<W, F> where
F: Sync,
W: Sync,
impl<W, F> Sync for Serializer<W, F> where
F: Sync,
W: Sync, Blanket Implementations
impl<T> From for T[src]
impl<T> From for Timpl<T, U> Into for T where
U: From<T>, [src]
impl<T, U> Into for T where
U: From<T>, impl<T, U> TryFrom for T where
T: From<U>, [src]
impl<T, U> TryFrom for T where
T: From<U>, type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>try_from)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized, [src]
impl<T> Borrow for T where
T: ?Sized, impl<T> BorrowMut for T where
T: ?Sized, [src]
impl<T> BorrowMut for T where
T: ?Sized, fn borrow_mut(&mut self) -> &mut T[src]
fn borrow_mut(&mut self) -> &mut TMutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
impl<T, U> TryInto for T where
U: TryFrom<T>, type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>try_from)Performs the conversion.
impl<T> Any for T where
T: 'static + ?Sized, [src]
impl<T> Any for T where
T: 'static + ?Sized, fn get_type_id(&self) -> TypeId[src]
fn get_type_id(&self) -> TypeId🔬 This is a nightly-only experimental API. (get_type_id)
this method will likely be replaced by an associated static
Gets the TypeId of self. Read more