[][src]Struct async_resol_vbus::LiveDataRecordingWriter

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

A RecordingWriter for type 0x88 live data recordings.

Methods

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

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

Construct a new LiveDataRecordingWriter<T> instance.

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_raw_data(
    &mut self,
    start_timestamp: DateTime<Utc>,
    end_timestamp: DateTime<Utc>,
    data: &[u8]
) -> Result<(), Error>
[src]

Write a type 0x88 live data record.

Trait Implementations

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

Auto Trait Implementations

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

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

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

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

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