Struct preserves::value::packed::writer::PackedWriter

source ·
pub struct PackedWriter<W: Write>(/* private fields */);
Expand description

The binary encoding Preserves writer.

Implementations§

source§

impl PackedWriter<&mut Vec<u8>>

source

pub fn encode<N: NestedValue, Enc: DomainEncode<N::Embedded>>( enc: &mut Enc, v: &N ) -> Result<Vec<u8>>

Encodes v to a byte vector.

source

pub fn encode_iovalue(v: &IOValue) -> Result<Vec<u8>>

Encodes v to a byte vector.

source§

impl<W: Write> PackedWriter<W>

source

pub fn new(write: W) -> Self

Construct a writer from the given byte sink write.

source

pub fn w(&mut self) -> &mut W

Retrieve a mutable reference to the underlying byte sink.

Trait Implementations§

source§

impl<W: Write> Writer for PackedWriter<W>

source§

fn flush(&mut self) -> Result<()>

Flushes any buffered output.
source§

fn write<N: NestedValue, Enc: DomainEncode<N::Embedded>>( &mut self, enc: &mut Enc, v: &N ) -> Result<()>

Writes NestedValue v to the output of this Writer.
source§

fn write_value<N: NestedValue, Enc: DomainEncode<N::Embedded>>( &mut self, enc: &mut Enc, v: &Value<N> ) -> Result<()>

Writes Value v to the output of this Writer.

Auto Trait Implementations§

§

impl<W> Freeze for PackedWriter<W>
where W: Freeze,

§

impl<W> RefUnwindSafe for PackedWriter<W>
where W: RefUnwindSafe,

§

impl<W> Send for PackedWriter<W>
where W: Send,

§

impl<W> Sync for PackedWriter<W>
where W: Sync,

§

impl<W> Unpin for PackedWriter<W>
where W: Unpin,

§

impl<W> UnwindSafe for PackedWriter<W>
where W: UnwindSafe,

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where 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 T
where 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 T
where 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 T
where 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.