pub struct AuthorizationHeader {
pub name: Option<String>,
pub value: Option<String>,
}
Fields§
§name: Option<String>
§value: Option<String>
Implementations§
Trait Implementations§
Source§impl Clone for AuthorizationHeader
impl Clone for AuthorizationHeader
Source§fn clone(&self) -> AuthorizationHeader
fn clone(&self) -> AuthorizationHeader
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 AuthorizationHeader
impl Debug for AuthorizationHeader
Source§impl Default for AuthorizationHeader
impl Default for AuthorizationHeader
Source§fn default() -> AuthorizationHeader
fn default() -> AuthorizationHeader
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuthorizationHeader
impl<'de> Deserialize<'de> for AuthorizationHeader
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AuthorizationHeader
impl PartialEq for AuthorizationHeader
Source§impl Serialize for AuthorizationHeader
impl Serialize for AuthorizationHeader
impl StructuralPartialEq for AuthorizationHeader
Auto Trait Implementations§
impl Freeze for AuthorizationHeader
impl RefUnwindSafe for AuthorizationHeader
impl Send for AuthorizationHeader
impl Sync for AuthorizationHeader
impl Unpin for AuthorizationHeader
impl UnwindSafe for AuthorizationHeader
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