pub struct ParseSignatureError(/* private fields */);
Expand description
The error produced when parsing the HTTPT Signature fails, including the name of the field that was invalid.
Implementations§
Source§impl ParseSignatureError
impl ParseSignatureError
Sourcepub fn missing_field(&self) -> &'static str
pub fn missing_field(&self) -> &'static str
Get the name of the missing field
Trait Implementations§
Source§impl Clone for ParseSignatureError
impl Clone for ParseSignatureError
Source§fn clone(&self) -> ParseSignatureError
fn clone(&self) -> ParseSignatureError
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ParseSignatureError
impl Debug for ParseSignatureError
Source§impl Display for ParseSignatureError
impl Display for ParseSignatureError
Source§impl Error for ParseSignatureError
impl Error for ParseSignatureError
Source§fn description(&self) -> &'static str
fn description(&self) -> &'static str
👎Deprecated since 1.42.0: use the Display impl or to_string()
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
Auto Trait Implementations§
impl Freeze for ParseSignatureError
impl RefUnwindSafe for ParseSignatureError
impl Send for ParseSignatureError
impl Sync for ParseSignatureError
impl Unpin for ParseSignatureError
impl UnwindSafe for ParseSignatureError
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