Struct bincode::ser::SizeCompound

source ·
pub(crate) struct SizeCompound<'a, S: Options + 'a> {
    ser: &'a mut SizeChecker<S>,
}

Fields§

§ser: &'a mut SizeChecker<S>

Trait Implementations§

source§

impl<'a, O: Options + 'a> SerializeMap for SizeCompound<'a, O>

§

type Ok = ()

Must match the Ok type of our Serializer.
§

type Error = Box<ErrorKind, Global>

Must match the Error type of our Serializer.
source§

fn serialize_key<K>(&mut self, value: &K) -> Result<()>where K: Serialize + ?Sized,

Serialize a map key. Read more
source§

fn serialize_value<V>(&mut self, value: &V) -> Result<()>where V: Serialize + ?Sized,

Serialize a map value. Read more
source§

fn end(self) -> Result<()>

Finish serializing a map.
source§

fn serialize_entry<K, V>( &mut self, key: &K, value: &V ) -> Result<(), Self::Error>where K: Serialize + ?Sized, V: Serialize + ?Sized,

Serialize a map entry consisting of a key and a value. Read more
source§

impl<'a, O: Options> SerializeSeq for SizeCompound<'a, O>

§

type Ok = ()

Must match the Ok type of our Serializer.
§

type Error = Box<ErrorKind, Global>

Must match the Error type of our Serializer.
source§

fn serialize_element<T>(&mut self, value: &T) -> Result<()>where T: Serialize + ?Sized,

Serialize a sequence element.
source§

fn end(self) -> Result<()>

Finish serializing a sequence.
source§

impl<'a, O: Options> SerializeStruct for SizeCompound<'a, O>

§

type Ok = ()

Must match the Ok type of our Serializer.
§

type Error = Box<ErrorKind, Global>

Must match the Error type of our Serializer.
source§

fn serialize_field<T>(&mut self, _key: &'static str, value: &T) -> Result<()>where T: Serialize + ?Sized,

Serialize a struct field.
source§

fn end(self) -> Result<()>

Finish serializing a struct.
source§

fn skip_field(&mut self, key: &'static str) -> Result<(), Self::Error>

Indicate that a struct field has been skipped. Read more
source§

impl<'a, O: Options> SerializeStructVariant for SizeCompound<'a, O>

§

type Ok = ()

Must match the Ok type of our Serializer.
§

type Error = Box<ErrorKind, Global>

Must match the Error type of our Serializer.
source§

fn serialize_field<T>(&mut self, _key: &'static str, value: &T) -> Result<()>where T: Serialize + ?Sized,

Serialize a struct variant field.
source§

fn end(self) -> Result<()>

Finish serializing a struct variant.
source§

fn skip_field(&mut self, key: &'static str) -> Result<(), Self::Error>

Indicate that a struct variant field has been skipped. Read more
source§

impl<'a, O: Options> SerializeTuple for SizeCompound<'a, O>

§

type Ok = ()

Must match the Ok type of our Serializer.
§

type Error = Box<ErrorKind, Global>

Must match the Error type of our Serializer.
source§

fn serialize_element<T>(&mut self, value: &T) -> Result<()>where T: Serialize + ?Sized,

Serialize a tuple element.
source§

fn end(self) -> Result<()>

Finish serializing a tuple.
source§

impl<'a, O: Options> SerializeTupleStruct for SizeCompound<'a, O>

§

type Ok = ()

Must match the Ok type of our Serializer.
§

type Error = Box<ErrorKind, Global>

Must match the Error type of our Serializer.
source§

fn serialize_field<T>(&mut self, value: &T) -> Result<()>where T: Serialize + ?Sized,

Serialize a tuple struct field.
source§

fn end(self) -> Result<()>

Finish serializing a tuple struct.
source§

impl<'a, O: Options> SerializeTupleVariant for SizeCompound<'a, O>

§

type Ok = ()

Must match the Ok type of our Serializer.
§

type Error = Box<ErrorKind, Global>

Must match the Error type of our Serializer.
source§

fn serialize_field<T>(&mut self, value: &T) -> Result<()>where T: Serialize + ?Sized,

Serialize a tuple variant field.
source§

fn end(self) -> Result<()>

Finish serializing a tuple variant.

Auto Trait Implementations§

§

impl<'a, S> RefUnwindSafe for SizeCompound<'a, S>where S: RefUnwindSafe,

§

impl<'a, S> Send for SizeCompound<'a, S>where S: Send,

§

impl<'a, S> Sync for SizeCompound<'a, S>where S: Sync,

§

impl<'a, S> Unpin for SizeCompound<'a, S>

§

impl<'a, S> !UnwindSafe for SizeCompound<'a, S>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.