[][src]Struct jaylink::SwoData

pub struct SwoData<'a> { /* fields omitted */ }

SWO data that was read via swo_read.

Implementations

impl<'a> SwoData<'a>[src]

pub fn did_overrun(&self) -> bool[src]

Returns whether the probe-internal buffer overflowed before the last read.

This indicates that some device data was lost.

Trait Implementations

impl<'a> AsRef<[u8]> for SwoData<'a>[src]

impl<'a> Debug for SwoData<'a>[src]

impl<'a> Deref for SwoData<'a>[src]

type Target = [u8]

The resulting type after dereferencing.

Auto Trait Implementations

impl<'a> RefUnwindSafe for SwoData<'a>

impl<'a> Send for SwoData<'a>

impl<'a> Sync for SwoData<'a>

impl<'a> Unpin for SwoData<'a>

impl<'a> UnwindSafe for SwoData<'a>

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.