#[repr(u8)]pub enum InterruptLine {
Line1 = 0,
Line2 = 1,
}Expand description
Which interrupt line.
Variants§
Trait Implementations§
Source§impl Clone for InterruptLine
impl Clone for InterruptLine
Source§fn clone(&self) -> InterruptLine
fn clone(&self) -> InterruptLine
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for InterruptLine
impl Debug for InterruptLine
Source§impl From<InterruptLine> for u8
impl From<InterruptLine> for u8
Source§fn from(enum_value: InterruptLine) -> Self
fn from(enum_value: InterruptLine) -> Self
Converts to this type from the input type.
impl Copy for InterruptLine
Auto Trait Implementations§
impl Freeze for InterruptLine
impl RefUnwindSafe for InterruptLine
impl Send for InterruptLine
impl Sync for InterruptLine
impl Unpin for InterruptLine
impl UnwindSafe for InterruptLine
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more