[][src]Struct syscall::io::Pio

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

Generic PIO

Methods

impl<T> Pio<T>[src]

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

Create a PIO from a given port

Trait Implementations

impl Io for Pio<u8>[src]

Read/Write for byte PIO

type Value = u8

fn read(&self) -> u8[src]

Read

fn write(&mut self, value: u8)[src]

Write

fn readf(&self, flags: Self::Value) -> bool[src]

fn writef(&mut self, flags: Self::Value, value: bool)[src]

impl Io for Pio<u16>[src]

Read/Write for word PIO

type Value = u16

fn read(&self) -> u16[src]

Read

fn write(&mut self, value: u16)[src]

Write

fn readf(&self, flags: Self::Value) -> bool[src]

fn writef(&mut self, flags: Self::Value, value: bool)[src]

impl Io for Pio<u32>[src]

Read/Write for doubleword PIO

type Value = u32

fn read(&self) -> u32[src]

Read

fn write(&mut self, value: u32)[src]

Write

fn readf(&self, flags: Self::Value) -> bool[src]

fn writef(&mut self, flags: Self::Value, value: bool)[src]

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

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

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

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, 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> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]