qei

Struct QeiManager

Source
pub struct QeiManager<T> { /* private fields */ }
Expand description

Extend a Qei peripherals by tracking overflows and underflows.

Implementations§

Source§

impl<T, K> QeiManager<T>
where T: Qei<Count = K>, K: Into<u16>,

Source

pub fn new(qei: T) -> QeiManager<T>

Create a new Qei from an existing one. The implemntation assume that the counter can’t change for more than (2^16-1)/2, because otherwise we can’t detect overflows/underflows

Source

pub fn sample(&mut self) -> Result<(), SamplingError>

Take a new sample from the Qei and update the internal counter.

Source

pub fn sample_unwrap(&mut self)

Take a new sample from the Qei and update the internal counter, unwrapping all errors.

Source

pub fn count(&self) -> i64

Returns the internal counter value

Source

pub fn reset(&mut self)

Resets the internal counter

Trait Implementations§

Source§

impl<T: Debug> Debug for QeiManager<T>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<T> Freeze for QeiManager<T>
where T: Freeze,

§

impl<T> RefUnwindSafe for QeiManager<T>
where T: RefUnwindSafe,

§

impl<T> Send for QeiManager<T>
where T: Send,

§

impl<T> Sync for QeiManager<T>
where T: Sync,

§

impl<T> Unpin for QeiManager<T>
where T: Unpin,

§

impl<T> UnwindSafe for QeiManager<T>
where T: UnwindSafe,

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.