pub struct User {
pub username: String,
pub password: String,
}Expand description
One set of HTTP Basic credentials.
Fields§
§username: StringThe user-id, which RFC 7617 §2 forbids from containing a colon.
password: StringThe password, compared in constant time and never logged.
Trait Implementations§
Source§impl Debug for User
Redacts the password.
impl Debug for User
Redacts the password.
Config is Debug, and a Debug-formatted config is exactly the kind of
thing that ends up in a log line or a panic message.
Source§impl<'de> Deserialize<'de> for User
impl<'de> Deserialize<'de> for User
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
Auto Trait Implementations§
impl Freeze for User
impl RefUnwindSafe for User
impl Send for User
impl Sync for User
impl Unpin for User
impl UnsafeUnpin for User
impl UnwindSafe for User
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