[][src]Struct hwio::Pio

pub struct Pio<T> { /* fields omitted */ }

Generic PIO

Implementations

impl<T> Pio<T>[src]

pub const fn new(port: u16) -> Self[src]

Create a PIO from a given port

Trait Implementations

impl<T: Clone> Clone for Pio<T>[src]

impl<T: Copy> Copy for Pio<T>[src]

impl Io for Pio<u8>[src]

Read/Write for byte PIO

type Value = u8

impl Io for Pio<u16>[src]

Read/Write for word PIO

type Value = u16

impl Io for Pio<u32>[src]

Read/Write for doubleword PIO

type Value = u32

Auto Trait Implementations

impl<T> Send for Pio<T> where
    T: Send

impl<T> Sync for Pio<T> where
    T: Sync

impl<T> Unpin for Pio<T> where
    T: 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, 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.