[][src]Struct imxrt_iomuxc::imxrt106x::Pads

pub struct Pads {
    pub emc: Pads,
    pub ad_b0: Pads,
    pub ad_b1: Pads,
    pub b0: Pads,
    pub b1: Pads,
    pub sd_b0: Pads,
    pub sd_b1: Pads,
}
This is supported on crate feature imxrt106x only.

All of the pads

Convention

The members of Pads are additional structs that provide pads as objects. The p prefix of each pad denotes "pad."

Fields

emc: Pads
This is supported on crate feature imxrt106x only.
ad_b0: Pads
This is supported on crate feature imxrt106x only.
ad_b1: Pads
This is supported on crate feature imxrt106x only.
b0: Pads
This is supported on crate feature imxrt106x only.
b1: Pads
This is supported on crate feature imxrt106x only.
sd_b0: Pads
This is supported on crate feature imxrt106x only.
sd_b1: Pads
This is supported on crate feature imxrt106x only.

Implementations

impl Pads[src]

pub const unsafe fn new() -> Pads[src]

This is supported on crate feature imxrt106x only.

Take all of the pads

Safety

You may safely call this once to acquire all of the pads. Subsequent calls may return pads that are mutably aliased elsewhere. Consider calling new() at the start of your program.

pub fn erase(self) -> ErasedPads[src]

This is supported on crate feature imxrt106x only.

Erase the types of all pads

See ErasedPad for more information.

Auto Trait Implementations

impl Send for Pads

impl !Sync for Pads

impl Unpin for Pads

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[src]

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.