[−][src]Struct mbus_api::ContextWrapper
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]
C: Clone,
fn clone(&self) -> ContextWrapper<'a, T, C>[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]
C: Debug,
T: 'a + Debug,
impl<'a, T: Api<C>, C> ApiNoContext for ContextWrapper<'a, T, C>[src]
fn api(&self) -> Box<dyn Future<Item = ApiResponse, Error = ApiError>>[src]
fn get(
&self,
device: String,
baudrate: Baudrate,
address: i32
) -> Box<dyn Future<Item = GetResponse, Error = ApiError>>[src]
&self,
device: String,
baudrate: Baudrate,
address: i32
) -> Box<dyn Future<Item = GetResponse, Error = ApiError>>
fn hat(&self) -> Box<dyn Future<Item = HatResponse, Error = ApiError>>[src]
fn hat_off(&self) -> Box<dyn Future<Item = HatOffResponse, Error = ApiError>>[src]
fn hat_on(&self) -> Box<dyn Future<Item = HatOnResponse, Error = ApiError>>[src]
fn scan(
&self,
device: String,
baudrate: Baudrate
) -> Box<dyn Future<Item = ScanResponse, Error = ApiError>>[src]
&self,
device: String,
baudrate: Baudrate
) -> Box<dyn Future<Item = ScanResponse, Error = ApiError>>
Auto Trait Implementations
impl<'a, T, C> Send for ContextWrapper<'a, T, C> where
C: Send,
T: Sync,
C: Send,
T: Sync,
impl<'a, T, C> Sync for ContextWrapper<'a, T, C> where
C: Sync,
T: Sync,
C: Sync,
T: Sync,
Blanket Implementations
impl<T, U> Into for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
impl<T> From for T[src]
impl<T, U> TryFrom for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T> Borrow for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,