pub enum Error {
Io(Error),
NulError(NulError),
Nix(Error),
StringConversionError,
WrongDataType,
BadReturnSize,
InvalidIndex,
General(String),
}Expand description
The Error type for the IIO library
Variants§
Io(Error)
A low-level I/O error
NulError(NulError)
An unexpected NUL value returned from the C library.
Nix(Error)
A low-level Unix-style error
StringConversionError
An error converting a value to/from a string representation.
WrongDataType
The wrong data type used in an operation
BadReturnSize
The size of a data or return value was different than expected.
InvalidIndex
A device or channel index did not find a requested object
General(String)
A generic error with a string explanation
Trait Implementations§
Source§impl Error for Error
impl Error for Error
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()
Auto Trait Implementations§
impl Freeze for Error
impl !RefUnwindSafe for Error
impl Send for Error
impl Sync for Error
impl Unpin for Error
impl !UnwindSafe for Error
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