pub enum FactorError {
InvalidField(&'static str),
BindingMismatch,
AuthorityVerification,
NotCurrent,
ArithmeticOverflow,
Canonicalization(String),
}Variants§
InvalidField(&'static str)
BindingMismatch
AuthorityVerification
NotCurrent
ArithmeticOverflow
Canonicalization(String)
Trait Implementations§
Source§impl Debug for FactorError
impl Debug for FactorError
Source§impl Display for FactorError
impl Display for FactorError
impl Eq for FactorError
Source§impl Error for FactorError
impl Error for FactorError
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 FactorError
impl PartialEq for FactorError
impl StructuralPartialEq for FactorError
Auto Trait Implementations§
impl Freeze for FactorError
impl RefUnwindSafe for FactorError
impl Send for FactorError
impl Sync for FactorError
impl Unpin for FactorError
impl UnsafeUnpin for FactorError
impl UnwindSafe for FactorError
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