[][src]Struct nine::ser::AccountingStructSerializer

pub struct AccountingStructSerializer<'ser, W: 'ser + Write + Seek> { /* fields omitted */ }

A struct serializer that counts the byte size of everything serialized so far.

Trait Implementations

impl<'ser, W: Debug + 'ser + Write + Seek> Debug for AccountingStructSerializer<'ser, W>[src]

impl<'ser, W: 'ser + Write + Seek> SerializeTuple for AccountingStructSerializer<'ser, W>[src]

type Ok = u32

Must match the Ok type of our Serializer.

type Error = SerError

Must match the Error type of our Serializer.

impl<'ser, W: 'ser + Write + Seek> SerializeStruct for AccountingStructSerializer<'ser, W>[src]

type Ok = u32

Must match the Ok type of our Serializer.

type Error = SerError

Must match the Error type of our Serializer.

impl<'ser, W: 'ser + Write + Seek> SerializeTupleStruct for AccountingStructSerializer<'ser, W>[src]

type Ok = u32

Must match the Ok type of our Serializer.

type Error = SerError

Must match the Error type of our Serializer.

Auto Trait Implementations

impl<'ser, W> Send for AccountingStructSerializer<'ser, W> where
    W: Send

impl<'ser, W> Sync for AccountingStructSerializer<'ser, W> where
    W: Sync

impl<'ser, W> Unpin for AccountingStructSerializer<'ser, W>

impl<'ser, W> !UnwindSafe for AccountingStructSerializer<'ser, W>

impl<'ser, W> RefUnwindSafe for AccountingStructSerializer<'ser, W> where
    W: RefUnwindSafe

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]