[][src]Struct imxrt1062_hal::pwm::UnclockedController

pub struct UnclockedController<M> { /* fields omitted */ }

A PWM module that is not receiving a clock input

An UnclockedController transitions to a Controller by calling clock().

Methods

impl UnclockedController<_1>[src]

pub fn clock(self, handle: &mut Handle) -> Controller<_1>[src]

Enable the input clock for this PWM module. Returns a PWM Controller that can allocated PWM outputs.

impl UnclockedController<_2>[src]

pub fn clock(self, handle: &mut Handle) -> Controller<_2>[src]

Enable the input clock for this PWM module. Returns a PWM Controller that can allocated PWM outputs.

impl UnclockedController<_3>[src]

pub fn clock(self, handle: &mut Handle) -> Controller<_3>[src]

Enable the input clock for this PWM module. Returns a PWM Controller that can allocated PWM outputs.

impl UnclockedController<_4>[src]

pub fn clock(self, handle: &mut Handle) -> Controller<_4>[src]

Enable the input clock for this PWM module. Returns a PWM Controller that can allocated PWM outputs.

Auto Trait Implementations

impl<M> Send for UnclockedController<M> where
    M: Send

impl<M> Sync for UnclockedController<M> where
    M: Sync

impl<M> Unpin for UnclockedController<M> where
    M: 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.