pub enum GatherSignatureDataError {
Empty,
Signature(SignatureError, usize),
TooManyKeys,
}Expand description
An error returned by gather_signature_data()
Variants§
Empty
No signing keys provided
Signature(SignatureError, usize)
could not sign data
TooManyKeys
Too many signing keys provided
Trait Implementations§
source§impl Debug for GatherSignatureDataError
impl Debug for GatherSignatureDataError
source§impl Display for GatherSignatureDataError
impl Display for GatherSignatureDataError
source§impl Error for GatherSignatureDataError
impl Error for GatherSignatureDataError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
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<GatherSignatureDataError> for ZipsignError
impl From<GatherSignatureDataError> for ZipsignError
source§fn from(source: GatherSignatureDataError) -> Self
fn from(source: GatherSignatureDataError) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl !RefUnwindSafe for GatherSignatureDataError
impl Send for GatherSignatureDataError
impl Sync for GatherSignatureDataError
impl Unpin for GatherSignatureDataError
impl !UnwindSafe for GatherSignatureDataError
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