struct Credentials {
username: String,
signature: String,
timestamp: String,
}Expand description
Represents user credentials extracted from an authorization header.
Contains the username, signature, and timestamp obtained by decoding and parsing the authorization header.
Fields§
§username: String§signature: String§timestamp: StringAuto Trait Implementations§
impl Freeze for Credentials
impl RefUnwindSafe for Credentials
impl Send for Credentials
impl Sync for Credentials
impl Unpin for Credentials
impl UnwindSafe for Credentials
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