[][src]Struct infrared::hal::PeriodicReceiver2

pub struct PeriodicReceiver2<RECV1, RECV2, PIN> { /* fields omitted */ }

Receiver for two protocols

Implementations

impl<PIN, PINERR, RECV1, CMD1, RECV2, CMD2> PeriodicReceiver2<RECV1, RECV2, PIN> where
    PIN: InputPin<Error = PINERR>,
    RECV1: ReceiverSM<Cmd = CMD1>,
    RECV2: ReceiverSM<Cmd = CMD2>,
    CMD1: Command,
    CMD2: Command
[src]

pub fn new(pin: PIN, samplerate: u32) -> Self[src]

pub fn destroy(self) -> PIN[src]

pub fn poll(&mut self) -> Result<(Option<CMD1>, Option<CMD2>), PINERR>[src]

Auto Trait Implementations

impl<RECV1, RECV2, PIN> Send for PeriodicReceiver2<RECV1, RECV2, PIN> where
    PIN: Send,
    RECV1: Send,
    RECV2: Send
[src]

impl<RECV1, RECV2, PIN> Sync for PeriodicReceiver2<RECV1, RECV2, PIN> where
    PIN: Sync,
    RECV1: Sync,
    RECV2: Sync
[src]

impl<RECV1, RECV2, PIN> Unpin for PeriodicReceiver2<RECV1, RECV2, PIN> where
    PIN: Unpin,
    RECV1: Unpin,
    RECV2: Unpin
[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.