[][src]Struct pl011_qemu::UART4

pub struct UART4 { /* fields omitted */ }

Hardware Singleton for UART4

Implementations

impl UART4[src]

pub fn take() -> Option<Self>[src]

takes the UART HW

Can only be taken once. If taken again returns None

pub unsafe fn steal() -> Self[src]

Unsafe function to steal hardware resources.

Should not be needed if properly passing around the uart

Trait Implementations

impl Deref for UART4[src]

type Target = PL011_Regs

The resulting type after dereferencing.

impl Send for UART4[src]

Auto Trait Implementations

impl !Sync for UART4[src]

impl Unpin for UART4[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> 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.