[][src]Struct async_resol_vbus::RecordingWriter

pub struct RecordingWriter<W> where
    W: Write
{ /* fields omitted */ }

Allows writing the recorded representation of DataSet values to a Write trait object.

Methods

impl<W> RecordingWriter<W> where
    W: Write
[src]

pub fn new(writer: W) -> RecordingWriter<W>[src]

Construct a new RecordingWriter.

pub fn get_ref(&self) -> &W[src]

Gets a reference to the underlying writer.

pub fn get_mut(&mut self) -> &mut W[src]

Gets a mutable reference to the underlying writer.

pub fn write_data_set(&mut self, data_set: &DataSet) -> Result<(), Error>[src]

Write the recorded representation of the DataSet.

Trait Implementations

impl<W> Debug for RecordingWriter<W> where
    W: Write + Debug
[src]

Auto Trait Implementations

impl<W> RefUnwindSafe for RecordingWriter<W> where
    W: RefUnwindSafe

impl<W> Send for RecordingWriter<W> where
    W: Send

impl<W> Sync for RecordingWriter<W> where
    W: Sync

impl<W> Unpin for RecordingWriter<W> where
    W: Unpin

impl<W> UnwindSafe for RecordingWriter<W> where
    W: UnwindSafe

Blanket Implementations

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

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

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

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

impl<T, U> Into<U> for T where
    U: From<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.