capsules_extra::chirp_i2c_moisture

Struct ChirpI2cMoisture

Source
pub struct ChirpI2cMoisture<'a, I: I2CDevice> { /* private fields */ }

Implementations§

Source§

impl<'a, I: I2CDevice> ChirpI2cMoisture<'a, I>

Source

pub fn new(i2c: &'a I, buffer: &'static mut [u8]) -> Self

Source

pub fn initialise(&self)

Trait Implementations§

Source§

impl<I: I2CDevice> I2CClient for ChirpI2cMoisture<'_, I>

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: I2CDevice> MoistureDriver<'a> for ChirpI2cMoisture<'a, I>

Source§

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

Source§

fn read_moisture(&self) -> Result<(), ErrorCode>

Read the moisture value from a sensor. The value is returned via the MoistureClient callback. Read more

Auto Trait Implementations§

§

impl<'a, I> !Freeze for ChirpI2cMoisture<'a, I>

§

impl<'a, I> !RefUnwindSafe for ChirpI2cMoisture<'a, I>

§

impl<'a, I> !Send for ChirpI2cMoisture<'a, I>

§

impl<'a, I> !Sync for ChirpI2cMoisture<'a, I>

§

impl<'a, I> Unpin for ChirpI2cMoisture<'a, I>

§

impl<'a, I> !UnwindSafe for ChirpI2cMoisture<'a, I>

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, U> TryFrom<U> for T
where U: Into<T>,

Source§

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>,

Source§

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.