//! FIFO status types.
/// Represents the FIFO status of the host controller.
#[repr(u8)]#[derive(Clone, Copy, Debug, Eq, PartialEq)]pubenumFifoStatus{/// MMC FIFO is empty.
Empty =0,/// MMC FIFO is full.
Full =1,}implFifoStatus{/// Creates a new [FifoStatus].
pubconstfnnew()->Self{Self::Empty
}}implDefault forFifoStatus{fndefault()->Self{Self::new()}}