pub struct ScramCredentials {
pub salt: Vec<u8>,
pub iterations: u32,
pub stored_key: Vec<u8>,
pub server_key: Vec<u8>,
}Expand description
Pre-computed SCRAM credentials for a user (stored server-side).
Fields§
§salt: Vec<u8>§iterations: u32§stored_key: Vec<u8>§server_key: Vec<u8>Trait Implementations§
Source§impl Debug for ScramCredentials
impl Debug for ScramCredentials
Auto Trait Implementations§
impl Freeze for ScramCredentials
impl RefUnwindSafe for ScramCredentials
impl Send for ScramCredentials
impl Sync for ScramCredentials
impl Unpin for ScramCredentials
impl UnsafeUnpin for ScramCredentials
impl UnwindSafe for ScramCredentials
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