[][src]Struct imxrt1062_hal::pwm::Pairs

pub struct Pairs<M, S> { /* fields omitted */ }

PWM complementary pairs

The struct doesn't have value right now. Use split() to turn the two pins into independent PWM outputs.

Methods

impl<M, S> Pairs<M, S> where
    M: Module,
    S: Submodule
[src]

pub fn split(self) -> (PWM<M, S, A>, PWM<M, S, B>)[src]

Consumes the complementary pairs, and sets the two PWM outputs for use as independent outputs.

Auto Trait Implementations

impl<M, S> !Send for Pairs<M, S>

impl<M, S> !Sync for Pairs<M, S>

impl<M, S> Unpin for Pairs<M, S> where
    M: Unpin,
    S: Unpin

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> Same<T> for T

type Output = T

Should always be Self

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.