pub enum SigningValueError {
Empty,
TooLong,
}Expand description
Bounded signing value validation failure.
Variants§
Trait Implementations§
Source§impl Clone for SigningValueError
impl Clone for SigningValueError
Source§fn clone(&self) -> SigningValueError
fn clone(&self) -> SigningValueError
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for SigningValueError
Source§impl Debug for SigningValueError
impl Debug for SigningValueError
Source§impl Display for SigningValueError
impl Display for SigningValueError
impl Eq for SigningValueError
Source§impl Error for SigningValueError
impl Error for SigningValueError
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 SigningValueError
impl PartialEq for SigningValueError
impl StructuralPartialEq for SigningValueError
Auto Trait Implementations§
impl Freeze for SigningValueError
impl RefUnwindSafe for SigningValueError
impl Send for SigningValueError
impl Sync for SigningValueError
impl Unpin for SigningValueError
impl UnsafeUnpin for SigningValueError
impl UnwindSafe for SigningValueError
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