Struct imxrt_hal::uart::UARTs[][src]

pub struct UARTs {
    pub uart1: Uninit<U1>,
    pub uart2: Uninit<U2>,
    pub uart3: Uninit<U3>,
    pub uart4: Uninit<U4>,
    pub uart5: Uninit<U5>,
    pub uart6: Uninit<U6>,
    pub uart7: Uninit<U7>,
    pub uart8: Uninit<U8>,
}

All available UARTs

All UARTs are uninitialized. Call init() to take and initialize the peripheral.

Fields

uart1: Uninit<U1>uart2: Uninit<U2>uart3: Uninit<U3>uart4: Uninit<U4>uart5: Uninit<U5>uart6: Uninit<U6>uart7: Uninit<U7>uart8: Uninit<U8>

Auto Trait Implementations

impl Send for UARTs

impl !Sync for UARTs

impl Unpin for UARTs

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.