Enum radicle_cob::signatures::error::Signatures
source · #[non_exhaustive]pub enum Signatures {
ExtendedSignature(ExtendedSignatureError),
Signature(Signature),
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
ExtendedSignature(ExtendedSignatureError)
Signature(Signature)
Trait Implementations§
source§impl Debug for Signatures
impl Debug for Signatures
source§impl Display for Signatures
impl Display for Signatures
source§impl Error for Signatures
impl Error for Signatures
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 From<ExtendedSignatureError> for Signatures
impl From<ExtendedSignatureError> for Signatures
source§fn from(source: ExtendedSignatureError) -> Self
fn from(source: ExtendedSignatureError) -> Self
Converts to this type from the input type.
source§impl From<Signature> for Signatures
impl From<Signature> for Signatures
source§impl From<Signatures> for Create
impl From<Signatures> for Create
source§fn from(source: Signatures) -> Self
fn from(source: Signatures) -> Self
Converts to this type from the input type.
source§impl From<Signatures> for Load
impl From<Signatures> for Load
source§fn from(source: Signatures) -> Self
fn from(source: Signatures) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for Signatures
impl RefUnwindSafe for Signatures
impl Send for Signatures
impl Sync for Signatures
impl Unpin for Signatures
impl UnwindSafe for Signatures
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