Trait rmp_serde::encode::UnderlyingWrite[][src]

pub trait UnderlyingWrite {
    type Write: Write;
    fn get_ref(&self) -> &Self::Write;
fn get_mut(&mut self) -> &mut Self::Write;
fn into_inner(self) -> Self::Write; }
Expand description

Obtain the underlying writer.

Associated Types

Underlying writer type.

Required methods

Gets a reference to the underlying writer.

Gets a mutable reference to the underlying writer.

It is inadvisable to directly write to the underlying writer.

Unwraps this Serializer, returning the underlying writer.

Implementors