pub enum MissingHeader {
ApiKey,
Accept,
CacheControl,
}Expand description
Header-Validation-Fehler.
Variants§
Trait Implementations§
Source§impl Clone for MissingHeader
impl Clone for MissingHeader
Source§fn clone(&self) -> MissingHeader
fn clone(&self) -> MissingHeader
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 MissingHeader
impl Debug for MissingHeader
Source§impl Display for MissingHeader
impl Display for MissingHeader
Source§impl Error for MissingHeader
Available on crate feature std only.
impl Error for MissingHeader
Available on crate feature
std only.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()
Source§impl PartialEq for MissingHeader
impl PartialEq for MissingHeader
Source§fn eq(&self, other: &MissingHeader) -> bool
fn eq(&self, other: &MissingHeader) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for MissingHeader
impl Eq for MissingHeader
impl StructuralPartialEq for MissingHeader
Auto Trait Implementations§
impl Freeze for MissingHeader
impl RefUnwindSafe for MissingHeader
impl Send for MissingHeader
impl Sync for MissingHeader
impl Unpin for MissingHeader
impl UnsafeUnpin for MissingHeader
impl UnwindSafe for MissingHeader
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