[][src]Struct i2cbus_api::ContextWrapper

pub struct ContextWrapper<'a, T, C> { /* fields omitted */ }

Context wrapper, to bind an API with a context.

Implementations

impl<'a, T, C> ContextWrapper<'a, T, C>[src]

pub fn new(api: &'a T, context: C) -> ContextWrapper<'a, T, C>[src]

Create a new ContextWrapper, binding the API and context.

pub fn api(&self) -> &T[src]

Borrows the API.

pub fn context(&self) -> &C[src]

Borrows the context.

Trait Implementations

impl<'a, T: Api<C>, C> ApiNoContext for ContextWrapper<'a, T, C>[src]

impl<'a, T, C> Clone for ContextWrapper<'a, T, C> where
    C: Clone
[src]

impl<'a, T, C> Debug for ContextWrapper<'a, T, C> where
    C: Debug,
    T: Debug
[src]

Auto Trait Implementations

impl<'a, T, C> RefUnwindSafe for ContextWrapper<'a, T, C> where
    C: RefUnwindSafe,
    T: RefUnwindSafe

impl<'a, T, C> Send for ContextWrapper<'a, T, C> where
    C: Send,
    T: Sync

impl<'a, T, C> Sync for ContextWrapper<'a, T, C> where
    C: Sync,
    T: Sync

impl<'a, T, C> Unpin for ContextWrapper<'a, T, C> where
    C: Unpin

impl<'a, T, C> UnwindSafe for ContextWrapper<'a, T, C> where
    C: UnwindSafe,
    T: RefUnwindSafe

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.