Struct otter_api_tests::serde_json::value::Serializer [−][src]
pub struct Serializer;
Serializer whose output is a Value.
This is the serializer that backs serde_json::to_value.
Unlike the main serde_json serializer which goes from some serializable
value of type T to JSON text, this one goes from T to
serde_json::Value.
The to_value function is implementable as:
use serde::Serialize; use serde_json::{Error, Value}; pub fn to_value<T>(input: T) -> Result<Value, Error> where T: Serialize, { input.serialize(serde_json::value::Serializer) }
Trait Implementations
impl Serializer for Serializer[src]
type Ok = Value
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 Error = Error
The error type when some error occurs during serialization.
type SerializeSeq = SerializeVec
Type returned from serialize_seq for serializing the content of the
sequence. Read more
type SerializeTuple = SerializeVec
Type returned from serialize_tuple for serializing the content of
the tuple. Read more
type SerializeTupleStruct = SerializeVec
Type returned from serialize_tuple_struct for serializing the
content of the tuple struct. Read more
type SerializeTupleVariant = SerializeTupleVariant
Type returned from serialize_tuple_variant for serializing the
content of the tuple variant. Read more
type SerializeMap = SerializeMap
Type returned from serialize_map for serializing the content of the
map. Read more
type SerializeStruct = SerializeMap
Type returned from serialize_struct for serializing the content of
the struct. Read more
type SerializeStructVariant = SerializeStructVariant
Type returned from serialize_struct_variant for serializing the
content of the struct variant. Read more
pub fn serialize_bool(self, value: bool) -> Result<Value, Error>[src]
pub fn serialize_i8(self, value: i8) -> Result<Value, Error>[src]
pub fn serialize_i16(self, value: i16) -> Result<Value, Error>[src]
pub fn serialize_i32(self, value: i32) -> Result<Value, Error>[src]
pub fn serialize_i64(self, value: i64) -> Result<Value, Error>[src]
pub fn serialize_u8(self, value: u8) -> Result<Value, Error>[src]
pub fn serialize_u16(self, value: u16) -> Result<Value, Error>[src]
pub fn serialize_u32(self, value: u32) -> Result<Value, Error>[src]
pub fn serialize_u64(self, value: u64) -> Result<Value, Error>[src]
pub fn serialize_f32(self, value: f32) -> Result<Value, Error>[src]
pub fn serialize_f64(self, value: f64) -> Result<Value, Error>[src]
pub fn serialize_char(self, value: char) -> Result<Value, Error>[src]
pub fn serialize_str(self, value: &str) -> Result<Value, Error>[src]
pub fn serialize_bytes(self, value: &[u8]) -> Result<Value, Error>[src]
pub fn serialize_unit(self) -> Result<Value, Error>[src]
pub fn serialize_unit_struct(self, _name: &'static str) -> Result<Value, Error>[src]
pub fn serialize_unit_variant(
self,
_name: &'static str,
_variant_index: u32,
variant: &'static str
) -> Result<Value, Error>[src]
self,
_name: &'static str,
_variant_index: u32,
variant: &'static str
) -> Result<Value, Error>
pub fn serialize_newtype_struct<T>(
self,
_name: &'static str,
value: &T
) -> Result<Value, Error> where
T: Serialize + ?Sized, [src]
self,
_name: &'static str,
value: &T
) -> Result<Value, Error> where
T: Serialize + ?Sized,
pub fn serialize_newtype_variant<T>(
self,
_name: &'static str,
_variant_index: u32,
variant: &'static str,
value: &T
) -> Result<Value, Error> where
T: Serialize + ?Sized, [src]
self,
_name: &'static str,
_variant_index: u32,
variant: &'static str,
value: &T
) -> Result<Value, Error> where
T: Serialize + ?Sized,
pub fn serialize_none(self) -> Result<Value, Error>[src]
pub fn serialize_some<T>(self, value: &T) -> Result<Value, Error> where
T: Serialize + ?Sized, [src]
T: Serialize + ?Sized,
pub fn serialize_seq(
self,
len: Option<usize>
) -> Result<<Serializer as Serializer>::SerializeSeq, Error>[src]
self,
len: Option<usize>
) -> Result<<Serializer as Serializer>::SerializeSeq, Error>
pub fn serialize_tuple(
self,
len: usize
) -> Result<<Serializer as Serializer>::SerializeTuple, Error>[src]
self,
len: usize
) -> Result<<Serializer as Serializer>::SerializeTuple, Error>
pub fn serialize_tuple_struct(
self,
_name: &'static str,
len: usize
) -> Result<<Serializer as Serializer>::SerializeTupleStruct, Error>[src]
self,
_name: &'static str,
len: usize
) -> Result<<Serializer as Serializer>::SerializeTupleStruct, Error>
pub fn serialize_tuple_variant(
self,
_name: &'static str,
_variant_index: u32,
variant: &'static str,
len: usize
) -> Result<<Serializer as Serializer>::SerializeTupleVariant, Error>[src]
self,
_name: &'static str,
_variant_index: u32,
variant: &'static str,
len: usize
) -> Result<<Serializer as Serializer>::SerializeTupleVariant, Error>
pub fn serialize_map(
self,
_len: Option<usize>
) -> Result<<Serializer as Serializer>::SerializeMap, Error>[src]
self,
_len: Option<usize>
) -> Result<<Serializer as Serializer>::SerializeMap, Error>
pub fn serialize_struct(
self,
name: &'static str,
len: usize
) -> Result<<Serializer as Serializer>::SerializeStruct, Error>[src]
self,
name: &'static str,
len: usize
) -> Result<<Serializer as Serializer>::SerializeStruct, Error>
pub fn serialize_struct_variant(
self,
_name: &'static str,
_variant_index: u32,
variant: &'static str,
_len: usize
) -> Result<<Serializer as Serializer>::SerializeStructVariant, Error>[src]
self,
_name: &'static str,
_variant_index: u32,
variant: &'static str,
_len: usize
) -> Result<<Serializer as Serializer>::SerializeStructVariant, Error>
pub fn collect_str<T>(self, value: &T) -> Result<Value, Error> where
T: Display + ?Sized, [src]
T: Display + ?Sized,
pub fn serialize_i128(self, v: i128) -> Result<Self::Ok, Self::Error>[src]
pub fn serialize_u128(self, v: u128) -> Result<Self::Ok, Self::Error>[src]
pub fn collect_seq<I>(self, iter: I) -> Result<Self::Ok, Self::Error> where
I: IntoIterator,
<I as IntoIterator>::Item: Serialize, [src]
I: IntoIterator,
<I as IntoIterator>::Item: Serialize,
pub fn collect_map<K, V, I>(self, iter: I) -> Result<Self::Ok, Self::Error> where
K: Serialize,
V: Serialize,
I: IntoIterator<Item = (K, V)>, [src]
K: Serialize,
V: Serialize,
I: IntoIterator<Item = (K, V)>,
pub fn is_human_readable(&self) -> bool[src]
Auto Trait Implementations
impl RefUnwindSafe for Serializer
impl Send for Serializer
impl Sync for Serializer
impl Unpin for Serializer
impl UnwindSafe for Serializer
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow(&self) -> &TⓘNotable traits for &'_ mut R
impl<'_, R> Read for &'_ mut R where
R: Read + ?Sized, impl<'_, W> Write for &'_ mut W where
W: Write + ?Sized, impl<'_, I> Iterator for &'_ mut I where
I: Iterator + ?Sized, type Item = <I as Iterator>::Item;impl<'_, F> Future for &'_ mut F where
F: Future + Unpin + ?Sized, type Output = <F as Future>::Output;[src]
Notable traits for &'_ mut R
impl<'_, R> Read for &'_ mut R where
R: Read + ?Sized, impl<'_, W> Write for &'_ mut W where
W: Write + ?Sized, impl<'_, I> Iterator for &'_ mut I where
I: Iterator + ?Sized, type Item = <I as Iterator>::Item;impl<'_, F> Future for &'_ mut F where
F: Future + Unpin + ?Sized, type Output = <F as Future>::Output;impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut TⓘNotable traits for &'_ mut R
impl<'_, R> Read for &'_ mut R where
R: Read + ?Sized, impl<'_, W> Write for &'_ mut W where
W: Write + ?Sized, impl<'_, I> Iterator for &'_ mut I where
I: Iterator + ?Sized, type Item = <I as Iterator>::Item;impl<'_, F> Future for &'_ mut F where
F: Future + Unpin + ?Sized, type Output = <F as Future>::Output;[src]
Notable traits for &'_ mut R
impl<'_, R> Read for &'_ mut R where
R: Read + ?Sized, impl<'_, W> Write for &'_ mut W where
W: Write + ?Sized, impl<'_, I> Iterator for &'_ mut I where
I: Iterator + ?Sized, type Item = <I as Iterator>::Item;impl<'_, F> Future for &'_ mut F where
F: Future + Unpin + ?Sized, type Output = <F as Future>::Output;impl<T> Downcast for T where
T: Any,
T: Any,
pub fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>ⓘNotable traits for Box<R, Global>
impl<R> Read for Box<R, Global> where
R: Read + ?Sized, impl<W> Write for Box<W, Global> where
W: Write + ?Sized, impl<F, A> Future for Box<F, A> where
A: Allocator + 'static,
F: Future + Unpin + ?Sized, type Output = <F as Future>::Output;impl<I, A> Iterator for Box<I, A> where
A: Allocator,
I: Iterator + ?Sized, type Item = <I as Iterator>::Item;
Notable traits for Box<R, Global>
impl<R> Read for Box<R, Global> where
R: Read + ?Sized, impl<W> Write for Box<W, Global> where
W: Write + ?Sized, impl<F, A> Future for Box<F, A> where
A: Allocator + 'static,
F: Future + Unpin + ?Sized, type Output = <F as Future>::Output;impl<I, A> Iterator for Box<I, A> where
A: Allocator,
I: Iterator + ?Sized, type Item = <I as Iterator>::Item;pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
pub fn as_any(&self) -> &(dyn Any + 'static)
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
impl<T> DowncastSync for T where
T: Any + Send + Sync,
T: Any + Send + Sync,
impl<A> DynCastExt for A
pub fn dyn_cast<T>(
self
) -> Result<<A as DynCastExtHelper<T>>::Target, <A as DynCastExtHelper<T>>::Source> where
T: ?Sized,
A: DynCastExtHelper<T>,
self
) -> Result<<A as DynCastExtHelper<T>>::Target, <A as DynCastExtHelper<T>>::Source> where
T: ?Sized,
A: DynCastExtHelper<T>,
pub fn dyn_upcast<T>(self) -> <A as DynCastExtAdvHelper<T, T>>::Target where
T: ?Sized,
A: DynCastExtAdvHelper<T, T, Source = <A as DynCastExtAdvHelper<T, T>>::Target>,
T: ?Sized,
A: DynCastExtAdvHelper<T, T, Source = <A as DynCastExtAdvHelper<T, T>>::Target>,
pub fn dyn_cast_adv<F, T>(
self
) -> Result<<A as DynCastExtAdvHelper<F, T>>::Target, <A as DynCastExtAdvHelper<F, T>>::Source> where
T: ?Sized,
A: DynCastExtAdvHelper<F, T>,
F: ?Sized,
self
) -> Result<<A as DynCastExtAdvHelper<F, T>>::Target, <A as DynCastExtAdvHelper<F, T>>::Source> where
T: ?Sized,
A: DynCastExtAdvHelper<F, T>,
F: ?Sized,
pub fn dyn_cast_with_config<C>(
self
) -> Result<<A as DynCastExtAdvHelper<<C as DynCastConfig>::Source, <C as DynCastConfig>::Target>>::Target, <A as DynCastExtAdvHelper<<C as DynCastConfig>::Source, <C as DynCastConfig>::Target>>::Source> where
C: DynCastConfig,
A: DynCastExtAdvHelper<<C as DynCastConfig>::Source, <C as DynCastConfig>::Target>,
self
) -> Result<<A as DynCastExtAdvHelper<<C as DynCastConfig>::Source, <C as DynCastConfig>::Target>>::Target, <A as DynCastExtAdvHelper<<C as DynCastConfig>::Source, <C as DynCastConfig>::Target>>::Source> where
C: DynCastConfig,
A: DynCastExtAdvHelper<<C as DynCastConfig>::Source, <C as DynCastConfig>::Target>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,