#[repr(u8)]pub enum ErrorStatus {
Show 19 variants
NoError = 0,
TooBig = 1,
NoSuchName = 2,
BadValue = 3,
ReadOnly = 4,
GenErr = 5,
NoAccess = 6,
WrongType = 7,
WrongLength = 8,
WrongEncoding = 9,
WrongValue = 10,
NoCreation = 11,
InconsistentValue = 12,
ResourceUnavailable = 13,
CommitFailed = 14,
UndoFailed = 15,
AuthorizationError = 16,
NotWritable = 17,
InconsistentName = 18,
}Variants§
NoError = 0
TooBig = 1
NoSuchName = 2
BadValue = 3
ReadOnly = 4
GenErr = 5
NoAccess = 6
WrongType = 7
WrongLength = 8
WrongEncoding = 9
WrongValue = 10
NoCreation = 11
InconsistentValue = 12
CommitFailed = 14
UndoFailed = 15
AuthorizationError = 16
NotWritable = 17
InconsistentName = 18
Implementations§
Source§impl ErrorStatus
impl ErrorStatus
Trait Implementations§
Source§impl Clone for ErrorStatus
impl Clone for ErrorStatus
Source§fn clone(&self) -> ErrorStatus
fn clone(&self) -> ErrorStatus
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 ErrorStatus
impl Debug for ErrorStatus
Source§impl From<ErrorStatus> for u8
impl From<ErrorStatus> for u8
Source§fn from(value: ErrorStatus) -> Self
fn from(value: ErrorStatus) -> Self
Converts to this type from the input type.
Source§impl Hash for ErrorStatus
impl Hash for ErrorStatus
Source§impl PartialEq for ErrorStatus
impl PartialEq for ErrorStatus
Source§impl TryFrom<u8> for ErrorStatus
impl TryFrom<u8> for ErrorStatus
impl Copy for ErrorStatus
impl Eq for ErrorStatus
impl StructuralPartialEq for ErrorStatus
Auto Trait Implementations§
impl Freeze for ErrorStatus
impl RefUnwindSafe for ErrorStatus
impl Send for ErrorStatus
impl Sync for ErrorStatus
impl Unpin for ErrorStatus
impl UnwindSafe for ErrorStatus
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