pub enum IntegraalError {
BadParameters(&'static str),
InconsistentParameters(&'static str),
MissingParameters(&'static str),
Unimplemented(&'static str),
}
Expand description
Integral error
Variants§
BadParameters(&'static str)
Some parameters do not fit the requirements of the computation method.
InconsistentParameters(&'static str)
Specified parameters are conflicting or ambiguous.
MissingParameters(&'static str)
One or more parameters are missing.
Unimplemented(&'static str)
A given method isn’t implemented for the specified parameters (e.g. due to requirements).
Trait Implementations§
Source§impl Clone for IntegraalError
impl Clone for IntegraalError
Source§fn clone(&self) -> IntegraalError
fn clone(&self) -> IntegraalError
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for IntegraalError
impl Debug for IntegraalError
Source§impl Display for IntegraalError
impl Display for IntegraalError
Source§impl Error for IntegraalError
impl Error for IntegraalError
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 PartialEq for IntegraalError
impl PartialEq for IntegraalError
impl Copy for IntegraalError
impl StructuralPartialEq for IntegraalError
Auto Trait Implementations§
impl Freeze for IntegraalError
impl RefUnwindSafe for IntegraalError
impl Send for IntegraalError
impl Sync for IntegraalError
impl Unpin for IntegraalError
impl UnwindSafe for IntegraalError
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