pub enum RefpropSysError {
LibraryLoadFailed(String),
SymbolNotFound(String),
}Variants§
LibraryLoadFailed(String)
The DLL/so could not be found or loaded.
SymbolNotFound(String)
A required symbol was not found in the library.
Trait Implementations§
Source§impl Debug for RefpropSysError
impl Debug for RefpropSysError
Source§impl Display for RefpropSysError
impl Display for RefpropSysError
Source§impl Error for RefpropSysError
impl Error for RefpropSysError
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()
Auto Trait Implementations§
impl Freeze for RefpropSysError
impl RefUnwindSafe for RefpropSysError
impl Send for RefpropSysError
impl Sync for RefpropSysError
impl Unpin for RefpropSysError
impl UnsafeUnpin for RefpropSysError
impl UnwindSafe for RefpropSysError
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