#[repr(i32)]pub enum PanuaPardisoError {
Show 18 variants
InputInconsistent = -1,
NotEnoughMemory = -2,
ReorderingProblem = -3,
ZeroPivot = -4,
UnclassifiedError = -5,
PreorderingFailed = -6,
DiagonalMatrixProblem = -7,
IntegerOverflow = -8,
NoLicenseFile = -10,
LicenseExpired = -11,
WrongUsernameOrHostname = -12,
MaxKrylovIterations = -100,
InsufficientConvergence = -101,
KrylovIterationError = -102,
KrylovBreakdown = -103,
LibraryLoadFailure = -900,
LibraryLicenseFailure = -901,
UnrecognizedError = -999,
}Variants§
InputInconsistent = -1
NotEnoughMemory = -2
ReorderingProblem = -3
ZeroPivot = -4
UnclassifiedError = -5
PreorderingFailed = -6
DiagonalMatrixProblem = -7
IntegerOverflow = -8
NoLicenseFile = -10
LicenseExpired = -11
WrongUsernameOrHostname = -12
MaxKrylovIterations = -100
InsufficientConvergence = -101
KrylovIterationError = -102
KrylovBreakdown = -103
LibraryLoadFailure = -900
LibraryLicenseFailure = -901
UnrecognizedError = -999
Trait Implementations§
Source§impl Debug for PanuaPardisoError
impl Debug for PanuaPardisoError
Source§impl Display for PanuaPardisoError
impl Display for PanuaPardisoError
Source§impl Error for PanuaPardisoError
impl Error for PanuaPardisoError
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<PanuaPardisoError> for PardisoError
impl From<PanuaPardisoError> for PardisoError
Source§fn from(source: PanuaPardisoError) -> Self
fn from(source: PanuaPardisoError) -> Self
Converts to this type from the input type.
Source§impl From<PanuaPardisoError> for i32
impl From<PanuaPardisoError> for i32
Source§fn from(enum_value: PanuaPardisoError) -> Self
fn from(enum_value: PanuaPardisoError) -> Self
Converts to this type from the input type.
Source§impl From<i32> for PanuaPardisoError
impl From<i32> for PanuaPardisoError
Source§impl FromPrimitive for PanuaPardisoError
impl FromPrimitive for PanuaPardisoError
Auto Trait Implementations§
impl Freeze for PanuaPardisoError
impl RefUnwindSafe for PanuaPardisoError
impl Send for PanuaPardisoError
impl Sync for PanuaPardisoError
impl Unpin for PanuaPardisoError
impl UnwindSafe for PanuaPardisoError
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> 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