Struct otter_api_tests::imports::rmp_serde::encode::ExtFieldSerializer [−]
pub struct ExtFieldSerializer<'a, W> { /* fields omitted */ }Trait Implementations
impl<'a, W> Debug for ExtFieldSerializer<'a, W> where
W: Debug,
W: Debug,
impl<'a, '_, W> Serializer for &'_ mut ExtFieldSerializer<'a, W> where
W: 'a + Write,
W: 'a + Write,
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. Read more
type Error = Error
The error type when some error occurs during serialization.
type SerializeSeq = Impossible<(), Error>
Type returned from serialize_seq for serializing the content of the
sequence. Read more
type SerializeTuple = Impossible<(), Error>
Type returned from serialize_tuple for serializing the content of
the tuple. Read more
type SerializeTupleStruct = Impossible<(), Error>
Type returned from serialize_tuple_struct for serializing the
content of the tuple struct. Read more
type SerializeTupleVariant = Impossible<(), Error>
Type returned from serialize_tuple_variant for serializing the
content of the tuple variant. Read more
type SerializeMap = Impossible<(), Error>
Type returned from serialize_map for serializing the content of the
map. Read more
type SerializeStruct = Impossible<(), Error>
Type returned from serialize_struct for serializing the content of
the struct. Read more
type SerializeStructVariant = Impossible<(), Error>
Type returned from serialize_struct_variant for serializing the
content of the struct variant. Read more
pub fn serialize_i8(
self,
value: i8
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
self,
value: i8
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
pub fn serialize_bytes(
self,
val: &[u8]
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
self,
val: &[u8]
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
pub fn serialize_bool(
self,
_val: bool
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
self,
_val: bool
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
pub fn serialize_i16(
self,
_val: i16
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
self,
_val: i16
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
pub fn serialize_i32(
self,
_val: i32
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
self,
_val: i32
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
pub fn serialize_i64(
self,
_val: i64
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
self,
_val: i64
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
pub fn serialize_u8(
self,
_val: u8
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
self,
_val: u8
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
pub fn serialize_u16(
self,
_val: u16
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
self,
_val: u16
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
pub fn serialize_u32(
self,
_val: u32
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
self,
_val: u32
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
pub fn serialize_u64(
self,
_val: u64
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
self,
_val: u64
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
pub fn serialize_f32(
self,
_val: f32
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
self,
_val: f32
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
pub fn serialize_f64(
self,
_val: f64
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
self,
_val: f64
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
pub fn serialize_char(
self,
_val: char
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
self,
_val: char
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
pub fn serialize_str(
self,
_val: &str
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
self,
_val: &str
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
pub fn serialize_unit(
self
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
self
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
pub fn serialize_unit_struct(
self,
_name: &'static str
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
self,
_name: &'static str
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
pub fn serialize_unit_variant(
self,
_name: &'static str,
_idx: u32,
_variant: &'static str
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
self,
_name: &'static str,
_idx: u32,
_variant: &'static str
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
pub fn serialize_newtype_struct<T>(
self,
_name: &'static str,
_value: &T
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error> where
T: Serialize + ?Sized,
self,
_name: &'static str,
_value: &T
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error> where
T: Serialize + ?Sized,
pub fn serialize_newtype_variant<T>(
self,
_name: &'static str,
_idx: u32,
_variant: &'static str,
_value: &T
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error> where
T: Serialize + ?Sized,
self,
_name: &'static str,
_idx: u32,
_variant: &'static str,
_value: &T
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error> where
T: Serialize + ?Sized,
pub fn serialize_none(
self
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
self
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
pub fn serialize_some<T>(
self,
_value: &T
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error> where
T: Serialize + ?Sized,
self,
_value: &T
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Ok, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error> where
T: Serialize + ?Sized,
pub fn serialize_seq(
self,
_len: Option<usize>
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::SerializeSeq, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
self,
_len: Option<usize>
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::SerializeSeq, <&'_ mut ExtFieldSerializer<'a, W> as Serializer>::Error>
pub fn serialize_tuple(
self,
_len: usize
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::SerializeTuple, Error>
self,
_len: usize
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::SerializeTuple, Error>
pub fn serialize_tuple_struct(
self,
_name: &'static str,
_len: usize
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::SerializeTupleStruct, Error>
self,
_name: &'static str,
_len: usize
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::SerializeTupleStruct, Error>
pub fn serialize_tuple_variant(
self,
_name: &'static str,
_idx: u32,
_variant: &'static str,
_len: usize
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::SerializeTupleVariant, Error>
self,
_name: &'static str,
_idx: u32,
_variant: &'static str,
_len: usize
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::SerializeTupleVariant, Error>
pub fn serialize_map(
self,
_len: Option<usize>
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::SerializeMap, Error>
self,
_len: Option<usize>
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::SerializeMap, Error>
pub fn serialize_struct(
self,
_name: &'static str,
_len: usize
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::SerializeStruct, Error>
self,
_name: &'static str,
_len: usize
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::SerializeStruct, Error>
pub fn serialize_struct_variant(
self,
_name: &'static str,
_idx: u32,
_variant: &'static str,
_len: usize
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::SerializeStructVariant, Error>
self,
_name: &'static str,
_idx: u32,
_variant: &'static str,
_len: usize
) -> Result<<&'_ mut ExtFieldSerializer<'a, W> as Serializer>::SerializeStructVariant, Error>
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 collect_str<T>(self, value: &T) -> Result<Self::Ok, Self::Error> where
T: Display + ?Sized, [src]
T: Display + ?Sized,
pub fn is_human_readable(&self) -> bool[src]
Auto Trait Implementations
impl<'a, W> RefUnwindSafe for ExtFieldSerializer<'a, W> where
W: RefUnwindSafe,
W: RefUnwindSafe,
impl<'a, W> Send for ExtFieldSerializer<'a, W> where
W: Send,
W: Send,
impl<'a, W> Sync for ExtFieldSerializer<'a, W> where
W: Sync,
W: Sync,
impl<'a, W> Unpin for ExtFieldSerializer<'a, W>
impl<'a, W> !UnwindSafe for ExtFieldSerializer<'a, W>
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>,