pub enum VerifyPayloadError {
SignatureHeaderValueInvalid(&'static str),
CalculateSignatureFailed,
SignatureMismatch,
}Variants§
Trait Implementations§
Source§impl Debug for VerifyPayloadError
impl Debug for VerifyPayloadError
Source§impl Display for VerifyPayloadError
impl Display for VerifyPayloadError
Source§impl Error for VerifyPayloadError
impl Error for VerifyPayloadError
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 VerifyPayloadError
impl RefUnwindSafe for VerifyPayloadError
impl Send for VerifyPayloadError
impl Sync for VerifyPayloadError
impl Unpin for VerifyPayloadError
impl UnsafeUnpin for VerifyPayloadError
impl UnwindSafe for VerifyPayloadError
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