GroupInterrupt

Struct GroupInterrupt 

Source
pub struct GroupInterrupt<GINT, MODE = NotSet>
where GINT: Gint, MODE: Mode,
{ /* private fields */ }

Implementations§

Source§

impl<GINT> GroupInterrupt<GINT>
where GINT: Gint,

Source

pub fn new_edge_triggered(gint: GINT) -> GroupInterrupt<GINT, NotSet>

Source

pub fn new_level_triggered(gint: GINT) -> GroupInterrupt<GINT, NotSet>

Source

pub fn new(gint: GINT, trigger: Trigger) -> GroupInterrupt<GINT, NotSet>

Source§

impl<GINT, MODE> GroupInterrupt<GINT, MODE>
where GINT: Gint, MODE: Mode + NotAnd,

Source

pub fn or(self) -> GroupInterrupt<GINT, Or>

Source§

impl<GINT, MODE> GroupInterrupt<GINT, MODE>
where GINT: Gint, MODE: Mode + NotOr,

Source

pub fn and(self) -> GroupInterrupt<GINT, And>

Source§

impl<GINT, MODE> GroupInterrupt<GINT, MODE>
where GINT: Gint, MODE: Mode + Set,

Source

pub fn on<PIO: PinId>( self, _pin: &Pin<PIO, Gpio<Input>>, active: Active, ) -> GroupInterrupt<GINT, MODE>

Source

pub fn on_high<PIO: PinId>( self, pin: &Pin<PIO, Gpio<Input>>, ) -> GroupInterrupt<GINT, MODE>

Source

pub fn on_low<PIO: PinId>( self, pin: &Pin<PIO, Gpio<Input>>, ) -> GroupInterrupt<GINT, MODE>

Source

pub fn clear_interrupt(&self)

Source§

impl<GINT, MODE> GroupInterrupt<GINT, MODE>
where GINT: Gint, MODE: Mode + NotAnd,

Source

pub fn or_on<PIO: PinId>( self, pin: &Pin<PIO, Gpio<Input>>, active: Active, ) -> GroupInterrupt<GINT, Or>

Source

pub fn or_on_high<PIO: PinId>( self, pin: &Pin<PIO, Gpio<Input>>, ) -> GroupInterrupt<GINT, Or>

Source

pub fn or_on_low<PIO: PinId>( self, pin: &Pin<PIO, Gpio<Input>>, ) -> GroupInterrupt<GINT, Or>

Source§

impl<GINT, MODE> GroupInterrupt<GINT, MODE>
where GINT: Gint, MODE: Mode + NotOr,

Source

pub fn and_on<PIO: PinId>( self, pin: &Pin<PIO, Gpio<Input>>, active: Active, ) -> GroupInterrupt<GINT, And>

Source

pub fn and_on_high<PIO: PinId>( self, pin: &Pin<PIO, Gpio<Input>>, ) -> GroupInterrupt<GINT, And>

Source

pub fn and_on_low<PIO: PinId>( self, pin: &Pin<PIO, Gpio<Input>>, ) -> GroupInterrupt<GINT, And>

Auto Trait Implementations§

§

impl<GINT, MODE> Freeze for GroupInterrupt<GINT, MODE>
where GINT: Freeze, MODE: Freeze,

§

impl<GINT, MODE> RefUnwindSafe for GroupInterrupt<GINT, MODE>
where GINT: RefUnwindSafe, MODE: RefUnwindSafe,

§

impl<GINT, MODE> Send for GroupInterrupt<GINT, MODE>
where GINT: Send, MODE: Send,

§

impl<GINT, MODE> Sync for GroupInterrupt<GINT, MODE>
where GINT: Sync, MODE: Sync,

§

impl<GINT, MODE> Unpin for GroupInterrupt<GINT, MODE>
where GINT: Unpin, MODE: Unpin,

§

impl<GINT, MODE> UnwindSafe for GroupInterrupt<GINT, MODE>
where GINT: UnwindSafe, MODE: 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> Same for T

Source§

type Output = T

Should always be Self
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.