Struct bincode::ser::Compound

source ·
pub struct Compound<'a, W: 'a, O: Options + 'a> {
    ser: &'a mut Serializer<W, O>,
}

Fields§

§ser: &'a mut Serializer<W, O>

Trait Implementations§

source§

impl<'a, W, O> SerializeMap for Compound<'a, W, O>where W: Write, O: Options,

§

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, W, O> SerializeSeq for Compound<'a, W, O>where W: Write, O: Options,

§

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, W, O> SerializeStruct for Compound<'a, W, O>where W: Write, O: Options,

§

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, W, O> SerializeStructVariant for Compound<'a, W, O>where W: Write, O: Options,

§

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, W, O> SerializeTuple for Compound<'a, W, O>where W: Write, O: Options,

§

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, W, O> SerializeTupleStruct for Compound<'a, W, O>where W: Write, O: Options,

§

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, W, O> SerializeTupleVariant for Compound<'a, W, O>where W: Write, O: Options,

§

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, W, O> RefUnwindSafe for Compound<'a, W, O>where O: RefUnwindSafe, W: RefUnwindSafe,

§

impl<'a, W, O> Send for Compound<'a, W, O>where O: Send, W: Send,

§

impl<'a, W, O> Sync for Compound<'a, W, O>where O: Sync, W: Sync,

§

impl<'a, W, O> Unpin for Compound<'a, W, O>

§

impl<'a, W, O> !UnwindSafe for Compound<'a, W, O>

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.