Enum FaerError
#[non_exhaustive]pub enum FaerError {
IndexOverflow,
OutOfMemory,
}
Expand description
Errors that can occur in sparse algorithms.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
IndexOverflow
An index exceeding the maximum value (I::Signed::MAX
for a given index type I
).
OutOfMemory
Memory allocation failed.
Trait Implementations§
§impl Error for FaerError
impl Error for FaerError
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()
§impl From<AllocError> for FaerError
impl From<AllocError> for FaerError
§fn from(value: AllocError) -> FaerError
fn from(value: AllocError) -> FaerError
Converts to this type from the input type.
§impl From<FaerError> for CholeskyError
impl From<FaerError> for CholeskyError
§fn from(value: FaerError) -> CholeskyError
fn from(value: FaerError) -> CholeskyError
Converts to this type from the input type.
§impl From<FaerError> for CreationError
impl From<FaerError> for CreationError
§fn from(value: FaerError) -> CreationError
fn from(value: FaerError) -> CreationError
Converts to this type from the input type.
§impl From<SizeOverflow> for FaerError
impl From<SizeOverflow> for FaerError
§fn from(value: SizeOverflow) -> FaerError
fn from(value: SizeOverflow) -> FaerError
Converts to this type from the input type.
§impl From<TryReserveError> for FaerError
impl From<TryReserveError> for FaerError
§fn from(value: TryReserveError) -> FaerError
fn from(value: TryReserveError) -> FaerError
Converts to this type from the input type.
§impl Ord for FaerError
impl Ord for FaerError
§impl PartialOrd for FaerError
impl PartialOrd for FaerError
impl Copy for FaerError
impl Eq for FaerError
impl StructuralPartialEq for FaerError
Auto Trait Implementations§
impl Freeze for FaerError
impl RefUnwindSafe for FaerError
impl Send for FaerError
impl Sync for FaerError
impl Unpin for FaerError
impl UnwindSafe for FaerError
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more