pub enum AlStatusClass {
NoError,
Configuration,
Communication,
Watchdog,
VendorSpecific,
Unknown(i32),
}Variants§
Trait Implementations§
Source§impl Clone for AlStatusClass
impl Clone for AlStatusClass
Source§fn clone(&self) -> AlStatusClass
fn clone(&self) -> AlStatusClass
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 moreimpl Copy for AlStatusClass
Source§impl Debug for AlStatusClass
impl Debug for AlStatusClass
impl Eq for AlStatusClass
Source§impl PartialEq for AlStatusClass
impl PartialEq for AlStatusClass
Source§fn eq(&self, other: &AlStatusClass) -> bool
fn eq(&self, other: &AlStatusClass) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AlStatusClass
Auto Trait Implementations§
impl Freeze for AlStatusClass
impl RefUnwindSafe for AlStatusClass
impl Send for AlStatusClass
impl Sync for AlStatusClass
impl Unpin for AlStatusClass
impl UnsafeUnpin for AlStatusClass
impl UnwindSafe for AlStatusClass
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