#[repr(u32)]
pub enum Value {
OneEighth,
OneQuarter,
OneHalf,
ThreeQuarters,
SevenEighths,
}
Expand description
Transmit interrupt FIFO level select
Variants
OneEighth
Trigger an interrupt when the FIFO becomes 1/8 full
OneQuarter
Trigger an interrupt when the FIFO becomes 1/4 full
OneHalf
Trigger an interrupt when the FIFO becomes 1/2 full
ThreeQuarters
Trigger an interrupt when the FIFO becomes 3/4 full
SevenEighths
Trigger an interrupt when the FIFO becomes 7/8 full
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Value
impl Send for Value
impl Sync for Value
impl Unpin for Value
impl UnwindSafe for Value
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more