[]Struct sunrise_ahci::hba::PxIS

struct PxIS(pub u32);

PxIS "Port x Interrupt status" register bitfield.

A '1' indicates a pending interrupt. Write '1' to clear. Refer to spec for actions that must be taken on each interrupt.

Defined in section 3.3.5

Implementations

impl PxIS

fn cpds(&self) -> bool

fn set_cpds(&mut self, value: bool)

fn tfes(&self) -> bool

fn set_tfes(&mut self, value: bool)

fn hbfs(&self) -> bool

fn set_hbfs(&mut self, value: bool)

fn hbds(&self) -> bool

fn set_hbds(&mut self, value: bool)

fn ifs(&self) -> bool

fn set_ifs(&mut self, value: bool)

fn infs(&self) -> bool

fn set_infs(&mut self, value: bool)

fn ofs(&self) -> bool

fn set_ofs(&mut self, value: bool)

fn ipms(&self) -> bool

fn set_ipms(&mut self, value: bool)

fn prcs(&self) -> bool

fn dmps(&self) -> bool

fn set_dmps(&mut self, value: bool)

fn pcs(&self) -> bool

fn dps(&self) -> bool

fn set_dps(&mut self, value: bool)

fn ufs(&self) -> bool

fn sbds(&self) -> bool

fn set_sbds(&mut self, value: bool)

fn dss(&self) -> bool

fn set_dss(&mut self, value: bool)

fn pss(&self) -> bool

fn set_pss(&mut self, value: bool)

fn dhrs(&self) -> bool

fn set_dhrs(&mut self, value: bool)

impl PxIS[src]

fn is_err(self) -> bool[src]

Checks if a PxIS has set any of the bits corresponding to an error.

Trait Implementations

impl<T> BitRange<T> for PxIS where
    u32: BitRange<T>, 

impl Clone for PxIS[src]

impl Copy for PxIS[src]

impl Debug for PxIS

Auto Trait Implementations

impl RefUnwindSafe for PxIS

impl Send for PxIS

impl Sync for PxIS

impl Unpin for PxIS

impl UnwindSafe for PxIS

Blanket Implementations

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

impl<T> Bit for T where
    T: BitRange<u8>, 

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> SizedIPCBuffer for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.