pub enum DisplayOperation {
LoadFile = 0,
Move = 1,
Erase = 2,
DelayReset = 3,
Unknown = 4,
}Variants§
Implementations§
Trait Implementations§
Source§impl Clone for DisplayOperation
impl Clone for DisplayOperation
Source§fn clone(&self) -> DisplayOperation
fn clone(&self) -> DisplayOperation
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl PartialEq for DisplayOperation
impl PartialEq for DisplayOperation
Source§fn eq(&self, other: &DisplayOperation) -> bool
fn eq(&self, other: &DisplayOperation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DisplayOperation
Auto Trait Implementations§
impl Freeze for DisplayOperation
impl RefUnwindSafe for DisplayOperation
impl Send for DisplayOperation
impl Sync for DisplayOperation
impl Unpin for DisplayOperation
impl UnsafeUnpin for DisplayOperation
impl UnwindSafe for DisplayOperation
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