[][src]Struct i2cbus_api::ContextWrapper

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

Context wrapper, to bind an API with a context.

Methods

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, C> Clone for ContextWrapper<'a, T, C> where
    C: Clone
[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

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

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

Auto Trait Implementations

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

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

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

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

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

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

impl<T> Erased for T