#[repr(u32)]pub enum LineInfoChangeKind {
Requested = 1,
Released = 2,
Reconfigured = 3,
}
Expand description
The trigger identifier for a LineInfoChangeEvent
.
Variants§
Requested = 1
The line has been requested.
Released = 2
The line has been released.
Reconfigured = 3
The line has been reconfigured.
Trait Implementations§
Source§impl Clone for LineInfoChangeKind
impl Clone for LineInfoChangeKind
Source§fn clone(&self) -> LineInfoChangeKind
fn clone(&self) -> LineInfoChangeKind
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for LineInfoChangeKind
impl Debug for LineInfoChangeKind
Source§impl PartialEq for LineInfoChangeKind
impl PartialEq for LineInfoChangeKind
Source§impl TryFrom<u32> for LineInfoChangeKind
impl TryFrom<u32> for LineInfoChangeKind
impl Copy for LineInfoChangeKind
impl Eq for LineInfoChangeKind
impl StructuralPartialEq for LineInfoChangeKind
Auto Trait Implementations§
impl Freeze for LineInfoChangeKind
impl RefUnwindSafe for LineInfoChangeKind
impl Send for LineInfoChangeKind
impl Sync for LineInfoChangeKind
impl Unpin for LineInfoChangeKind
impl UnwindSafe for LineInfoChangeKind
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