pub enum BLASError {
OverflowDimension(String),
InvalidDim(String),
InvalidFlag(String),
FailedCheck(String),
UninitializedField(&'static str),
ExplicitCopy(String),
Miscellaneous(String),
RuntimeError(String),
}
Variants§
OverflowDimension(String)
InvalidDim(String)
InvalidFlag(String)
FailedCheck(String)
UninitializedField(&'static str)
ExplicitCopy(String)
Miscellaneous(String)
RuntimeError(String)
Trait Implementations§
Source§impl Error for BLASError
impl Error for BLASError
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<TryFromIntError> for BLASError
impl From<TryFromIntError> for BLASError
Source§fn from(_: TryFromIntError) -> BLASError
fn from(_: TryFromIntError) -> BLASError
Converts to this type from the input type.
Source§impl From<UninitializedFieldError> for BLASError
impl From<UninitializedFieldError> for BLASError
Source§fn from(e: UninitializedFieldError) -> BLASError
fn from(e: UninitializedFieldError) -> BLASError
Converts to this type from the input type.
impl Eq for BLASError
impl StructuralPartialEq for BLASError
Auto Trait Implementations§
impl Freeze for BLASError
impl RefUnwindSafe for BLASError
impl Send for BLASError
impl Sync for BLASError
impl Unpin for BLASError
impl UnwindSafe for BLASError
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