pub enum ParametersError {
InvalidThreshold(u16),
InvalidParties(u16),
}
Expand description
Parameters error.
Variants§
Trait Implementations§
Source§impl Debug for ParametersError
impl Debug for ParametersError
Source§impl Display for ParametersError
impl Display for ParametersError
Source§impl Error for ParametersError
impl Error for ParametersError
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 ParametersError
impl RefUnwindSafe for ParametersError
impl Send for ParametersError
impl Sync for ParametersError
impl Unpin for ParametersError
impl UnwindSafe for ParametersError
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