[][src]Struct async_resol_vbus::LiveDataWriter

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

Allows writing the live represenation of Data variants to a Write trait object.

Methods

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

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

Construct a new LiveDataWriter.

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(&mut self, data: &Data) -> Result<(), Error>[src]

Write the live representation of the Data variant.

Trait Implementations

impl<W> AsMut<W> for LiveDataWriter<W> where
    W: Write
[src]

impl<W> AsRef<W> for LiveDataWriter<W> where
    W: Write
[src]

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

Auto Trait Implementations

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

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

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

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

impl<W> UnwindSafe for LiveDataWriter<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.