pub enum RMesgError {
NotImplementedForThisPlatform,
UnableToObtainSystemTime,
UnableToAddDurationToSystemTime,
KLogTimestampsDisabled,
IntegerOutOfBound(String),
Utf8StringConversionError(String),
IOError(String),
InternalError(String),
EntryParsingError(String),
UnableToObtainElapsedTime(SystemTimeError),
DevKMsgFileOpenError(String),
OperationNotPermitted(String),
}Variants§
NotImplementedForThisPlatform
UnableToObtainSystemTime
UnableToAddDurationToSystemTime
KLogTimestampsDisabled
IntegerOutOfBound(String)
Utf8StringConversionError(String)
IOError(String)
InternalError(String)
EntryParsingError(String)
UnableToObtainElapsedTime(SystemTimeError)
DevKMsgFileOpenError(String)
OperationNotPermitted(String)
Trait Implementations§
Source§impl Debug for RMesgError
impl Debug for RMesgError
Source§impl Display for RMesgError
impl Display for RMesgError
Source§impl Error for RMesgError
impl Error for RMesgError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§impl From<EntryParsingError> for RMesgError
impl From<EntryParsingError> for RMesgError
Source§fn from(err: EntryParsingError) -> RMesgError
fn from(err: EntryParsingError) -> RMesgError
Converts to this type from the input type.
Source§impl From<Error> for RMesgError
impl From<Error> for RMesgError
Source§fn from(err: Error) -> RMesgError
fn from(err: Error) -> RMesgError
Converts to this type from the input type.
Source§impl From<FromUtf8Error> for RMesgError
impl From<FromUtf8Error> for RMesgError
Source§fn from(err: FromUtf8Error) -> RMesgError
fn from(err: FromUtf8Error) -> RMesgError
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for RMesgError
impl RefUnwindSafe for RMesgError
impl Send for RMesgError
impl Sync for RMesgError
impl Unpin for RMesgError
impl UnwindSafe for RMesgError
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