pub enum FrostMlDsaError {
ThresholdNotMet {
have: usize,
need: u32,
},
ResearchOnly(String),
}Expand description
Errors during FROST-ML-DSA operations.
Variants§
Trait Implementations§
Source§impl Debug for FrostMlDsaError
impl Debug for FrostMlDsaError
Source§impl Display for FrostMlDsaError
impl Display for FrostMlDsaError
Source§impl Error for FrostMlDsaError
impl Error for FrostMlDsaError
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()
Auto Trait Implementations§
impl Freeze for FrostMlDsaError
impl RefUnwindSafe for FrostMlDsaError
impl Send for FrostMlDsaError
impl Sync for FrostMlDsaError
impl Unpin for FrostMlDsaError
impl UnsafeUnpin for FrostMlDsaError
impl UnwindSafe for FrostMlDsaError
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