pub enum CompositeError {
Verify(String),
Empty,
Serde(Error),
}Expand description
Errors during composite signature operations.
Variants§
Verify(String)
Verification failed (at least one component invalid).
Empty
No components.
Serde(Error)
Serialization error.
Trait Implementations§
Source§impl Debug for CompositeError
impl Debug for CompositeError
Source§impl Display for CompositeError
impl Display for CompositeError
Source§impl Error for CompositeError
impl Error for CompositeError
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 !RefUnwindSafe for CompositeError
impl !UnwindSafe for CompositeError
impl Freeze for CompositeError
impl Send for CompositeError
impl Sync for CompositeError
impl Unpin for CompositeError
impl UnsafeUnpin for CompositeError
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