Struct capsules_core::virtualizers::virtual_i2c::I2CDevice

source ·
pub struct I2CDevice<'a, I: I2CMaster<'a>, S: SMBusMaster<'a> = NoSMBus> { /* private fields */ }

Implementations§

source§

impl<'a, I: I2CMaster<'a>, S: SMBusMaster<'a>> I2CDevice<'a, I, S>

source

pub fn new(mux: &'a MuxI2C<'a, I, S>, addr: u8) -> I2CDevice<'a, I, S>

source

pub fn set_client(&'a self, client: &'a dyn I2CClient)

Trait Implementations§

source§

impl<'a, I: I2CMaster<'a>, S: SMBusMaster<'a>> I2CClient for I2CDevice<'a, I, S>

source§

fn command_complete(&self, buffer: &'static mut [u8], status: Result<(), Error>)

Called when an I2C command completed. The error denotes whether the command completed successfully or if an error occured.
source§

impl<'a, I: I2CMaster<'a>> I2CDevice for I2CDevice<'a, I>

source§

fn enable(&self)

source§

fn disable(&self)

source§

fn write_read( &self, data: &'static mut [u8], write_len: usize, read_len: usize ) -> Result<(), (Error, &'static mut [u8])>

source§

fn write( &self, data: &'static mut [u8], len: usize ) -> Result<(), (Error, &'static mut [u8])>

source§

fn read( &self, buffer: &'static mut [u8], len: usize ) -> Result<(), (Error, &'static mut [u8])>

source§

impl<'a, I: I2CMaster<'a>, S: SMBusMaster<'a>> ListNode<'a, I2CDevice<'a, I, S>> for I2CDevice<'a, I, S>

source§

fn next(&'a self) -> &'a ListLink<'a, I2CDevice<'a, I, S>>

Auto Trait Implementations§

§

impl<'a, I, S = NoSMBus> !Freeze for I2CDevice<'a, I, S>

§

impl<'a, I, S = NoSMBus> !RefUnwindSafe for I2CDevice<'a, I, S>

§

impl<'a, I, S = NoSMBus> !Send for I2CDevice<'a, I, S>

§

impl<'a, I, S = NoSMBus> !Sync for I2CDevice<'a, I, S>

§

impl<'a, I, S> Unpin for I2CDevice<'a, I, S>

§

impl<'a, I, S = NoSMBus> !UnwindSafe for I2CDevice<'a, I, S>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> SizedTypeProperties for T

source§

#[doc(hidden)] const IS_ZST: bool = _

🔬This is a nightly-only experimental API. (sized_type_properties)
true if this type requires no storage. false if its size is greater than zero. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.