[−][src]Struct sunrise_libuser::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 for Pio<T> where
T: Clone,
[src]
T: Clone,
impl<T> Copy for Pio<T> where
T: Copy,
[src]
T: Copy,
impl<T> Debug for Pio<T> where
T: Debug,
[src]
T: Debug,
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<Self::Value>,
Self::Value: BitAnd<Self::Value>,
<Self::Value as BitAnd<Self::Value>>::Output == Self::Value,
[src]
Self::Value: PartialEq<Self::Value>,
Self::Value: BitAnd<Self::Value>,
<Self::Value as BitAnd<Self::Value>>::Output == Self::Value,
fn writef(&mut self, flags: Self::Value, value: bool) where
Self::Value: PartialEq<Self::Value>,
Self::Value: BitAnd<Self::Value>,
Self::Value: BitOr<Self::Value>,
Self::Value: Not,
<Self::Value as BitAnd<Self::Value>>::Output == Self::Value,
<Self::Value as BitOr<Self::Value>>::Output == Self::Value,
<Self::Value as Not>::Output == Self::Value,
[src]
Self::Value: PartialEq<Self::Value>,
Self::Value: BitAnd<Self::Value>,
Self::Value: BitOr<Self::Value>,
Self::Value: Not,
<Self::Value as BitAnd<Self::Value>>::Output == Self::Value,
<Self::Value as BitOr<Self::Value>>::Output == Self::Value,
<Self::Value as Not>::Output == Self::Value,
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<Self::Value>,
Self::Value: BitAnd<Self::Value>,
<Self::Value as BitAnd<Self::Value>>::Output == Self::Value,
[src]
Self::Value: PartialEq<Self::Value>,
Self::Value: BitAnd<Self::Value>,
<Self::Value as BitAnd<Self::Value>>::Output == Self::Value,
fn writef(&mut self, flags: Self::Value, value: bool) where
Self::Value: PartialEq<Self::Value>,
Self::Value: BitAnd<Self::Value>,
Self::Value: BitOr<Self::Value>,
Self::Value: Not,
<Self::Value as BitAnd<Self::Value>>::Output == Self::Value,
<Self::Value as BitOr<Self::Value>>::Output == Self::Value,
<Self::Value as Not>::Output == Self::Value,
[src]
Self::Value: PartialEq<Self::Value>,
Self::Value: BitAnd<Self::Value>,
Self::Value: BitOr<Self::Value>,
Self::Value: Not,
<Self::Value as BitAnd<Self::Value>>::Output == Self::Value,
<Self::Value as BitOr<Self::Value>>::Output == Self::Value,
<Self::Value as 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<Self::Value>,
Self::Value: BitAnd<Self::Value>,
<Self::Value as BitAnd<Self::Value>>::Output == Self::Value,
[src]
Self::Value: PartialEq<Self::Value>,
Self::Value: BitAnd<Self::Value>,
<Self::Value as BitAnd<Self::Value>>::Output == Self::Value,
fn writef(&mut self, flags: Self::Value, value: bool) where
Self::Value: PartialEq<Self::Value>,
Self::Value: BitAnd<Self::Value>,
Self::Value: BitOr<Self::Value>,
Self::Value: Not,
<Self::Value as BitAnd<Self::Value>>::Output == Self::Value,
<Self::Value as BitOr<Self::Value>>::Output == Self::Value,
<Self::Value as Not>::Output == Self::Value,
[src]
Self::Value: PartialEq<Self::Value>,
Self::Value: BitAnd<Self::Value>,
Self::Value: BitOr<Self::Value>,
Self::Value: Not,
<Self::Value as BitAnd<Self::Value>>::Output == Self::Value,
<Self::Value as BitOr<Self::Value>>::Output == Self::Value,
<Self::Value as Not>::Output == Self::Value,
Auto Trait Implementations
impl<T> RefUnwindSafe for Pio<T> where
T: RefUnwindSafe,
T: RefUnwindSafe,
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,
impl<T> UnwindSafe for Pio<T> where
T: UnwindSafe,
T: UnwindSafe,
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> SizedIPCBuffer for T
[src]
fn size(&Self) -> usize
[src]
fn is_cool(usize, usize) -> bool
[src]
unsafe fn from_raw_parts<'a>(usize, usize) -> &'a T
[src]
unsafe fn from_raw_parts_mut<'a>(usize, usize) -> &'a mut T
[src]
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
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>,