[][src]Enum sunrise_ahci::fis::FisType

#[repr(u8)]pub enum FisType {
    RegH2D,
    RegD2H,
    DmaAct,
    DmaSetup,
    Data,
    Bist,
    PioSetup,
    DevBits,
}

The types of a FIS.

Stored on byte 0 of every FIS, determines the length of the structure to be read.

Variants

RegH2D

Register FIS - host to device

RegD2H

Register FIS - device to host

DmaAct

DMA activate FIS - device to host

DmaSetup

DMA setup FIS - bidirectional

Data

Data FIS - bidirectional

Bist

BIST activate FIS - bidirectional

PioSetup

PIO setup FIS - device to host

DevBits

Set device bits FIS - device to host

Auto Trait Implementations

impl RefUnwindSafe for FisType

impl Send for FisType

impl Sync for FisType

impl Unpin for FisType

impl UnwindSafe for FisType

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> SizedIPCBuffer for 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.