pub enum LibsensorsError {
Wildcards,
NoEntry,
AccessRead,
Kernel,
DivZero,
ChipName,
BusName,
Parse,
AccessWrite,
IO,
Recursion,
Unknown,
}
Variants§
Wildcards
NoEntry
AccessRead
Kernel
DivZero
ChipName
BusName
Parse
AccessWrite
IO
Recursion
Unknown
Trait Implementations§
Source§impl Clone for LibsensorsError
impl Clone for LibsensorsError
Source§fn clone(&self) -> LibsensorsError
fn clone(&self) -> LibsensorsError
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 LibsensorsError
impl Debug for LibsensorsError
Source§impl Display for LibsensorsError
impl Display for LibsensorsError
Source§impl Error for LibsensorsError
impl Error for LibsensorsError
Source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
Source§fn cause(&self) -> Option<&dyn Error>
fn cause(&self) -> Option<&dyn Error>
👎Deprecated since 1.33.0: replaced by Error::source, which can support downcasting
impl Copy for LibsensorsError
Auto Trait Implementations§
impl Freeze for LibsensorsError
impl RefUnwindSafe for LibsensorsError
impl Send for LibsensorsError
impl Sync for LibsensorsError
impl Unpin for LibsensorsError
impl UnwindSafe for LibsensorsError
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