Enum ffsend_api::action::metadata::MetaError
source · pub enum MetaError {
ComputeSignature,
NonceRequest,
NonceResponse(ResponseError),
Nonce(NonceError),
Malformed,
Decrypt,
}Variants
ComputeSignature
An error occurred while computing the cryptographic signature used for decryption.
NonceRequest
Sending the request to gather the metadata encryption nonce failed.
NonceResponse(ResponseError)
The server responded with an error while fetching the metadata encryption nonce.
Nonce(NonceError)
Couldn’t parse the metadata encryption nonce.
Malformed
The received metadata is malformed, and couldn’t be decoded or interpreted.
Decrypt
Failed to decrypt the received metadata.
Trait Implementations
sourceimpl Fail for MetaError
impl Fail for MetaError
sourcefn cause(&self) -> Option<&dyn Fail>
fn cause(&self) -> Option<&dyn Fail>
Returns a reference to the underlying cause of this failure, if it
is an error that wraps other errors. Read more
sourcefn backtrace(&self) -> Option<&Backtrace>
fn backtrace(&self) -> Option<&Backtrace>
Returns a reference to the
Backtrace carried by this failure, if it
carries one. Read moreAuto Trait Implementations
impl RefUnwindSafe for MetaError
impl Send for MetaError
impl Sync for MetaError
impl Unpin for MetaError
impl UnwindSafe for MetaError
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more