[−][src]Struct sunrise_libutils::io::Pio
Port IO accessor.
Fields
port: u16
The io port address.
value: PhantomData<T>
The width of the port.
Implementations
impl<T> Pio<T>
[src]
Trait Implementations
impl<T: Clone> Clone for Pio<T>
[src]
fn clone(&self) -> Pio<T>
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl<T: Copy> Copy for Pio<T>
[src]
impl<T: Debug> Debug for Pio<T>
[src]
impl Io for Pio<u8>
[src]
Read/Write for byte PIO
type Value = u8
The width of the IO access. Should be a primitive type like u8, u16, u32... Read more
fn read(&self) -> u8
[src]
Read
fn write(&mut self, value: u8)
[src]
Write
fn readf(&self, flags: Self::Value) -> bool where
Self::Value: PartialEq + BitAnd<Output = Self::Value>,
[src]
Self::Value: PartialEq + BitAnd<Output = Self::Value>,
fn writef(&mut self, flags: Self::Value, value: bool) where
Self::Value: PartialEq + BitAnd<Output = Self::Value> + BitOr<Output = Self::Value> + Not<Output = Self::Value>,
[src]
Self::Value: PartialEq + BitAnd<Output = Self::Value> + BitOr<Output = Self::Value> + Not<Output = Self::Value>,
impl Io for Pio<u16>
[src]
Read/Write for word PIO
type Value = u16
The width of the IO access. Should be a primitive type like u8, u16, u32... Read more
fn read(&self) -> u16
[src]
Read
fn write(&mut self, value: u16)
[src]
Write
fn readf(&self, flags: Self::Value) -> bool where
Self::Value: PartialEq + BitAnd<Output = Self::Value>,
[src]
Self::Value: PartialEq + BitAnd<Output = Self::Value>,
fn writef(&mut self, flags: Self::Value, value: bool) where
Self::Value: PartialEq + BitAnd<Output = Self::Value> + BitOr<Output = Self::Value> + Not<Output = Self::Value>,
[src]
Self::Value: PartialEq + BitAnd<Output = Self::Value> + BitOr<Output = Self::Value> + Not<Output = Self::Value>,
impl Io for Pio<u32>
[src]
Read/Write for doubleword PIO
type Value = u32
The width of the IO access. Should be a primitive type like u8, u16, u32... Read more
fn read(&self) -> u32
[src]
Read
fn write(&mut self, value: u32)
[src]
Write
fn readf(&self, flags: Self::Value) -> bool where
Self::Value: PartialEq + BitAnd<Output = Self::Value>,
[src]
Self::Value: PartialEq + BitAnd<Output = Self::Value>,
fn writef(&mut self, flags: Self::Value, value: bool) where
Self::Value: PartialEq + BitAnd<Output = Self::Value> + BitOr<Output = Self::Value> + Not<Output = Self::Value>,
[src]
Self::Value: PartialEq + BitAnd<Output = Self::Value> + BitOr<Output = Self::Value> + Not<Output = Self::Value>,
Auto Trait Implementations
impl<T> Send for Pio<T> where
T: Send,
T: Send,
impl<T> Sync for Pio<T> where
T: Sync,
T: Sync,
impl<T> Unpin for Pio<T> where
T: Unpin,
T: Unpin,
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,