pub struct I2cBoundBusAsync<I, A>{
pub interface: I,
pub address: A,
}
Expand description
This represents a specific device bound to an I2C bus.
Fields§
§interface: I
I2c interface
address: A
Device address
Auto Trait Implementations§
impl<I, A> Freeze for I2cBoundBusAsync<I, A>
impl<I, A> RefUnwindSafe for I2cBoundBusAsync<I, A>where
I: RefUnwindSafe,
A: RefUnwindSafe,
impl<I, A> Send for I2cBoundBusAsync<I, A>
impl<I, A> Sync for I2cBoundBusAsync<I, A>
impl<I, A> Unpin for I2cBoundBusAsync<I, A>
impl<I, A> UnwindSafe for I2cBoundBusAsync<I, A>where
I: UnwindSafe,
A: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more