Struct sasl::client::mechanisms::Scram
source · pub struct Scram<S: ScramProvider> { /* private fields */ }
Available on crate feature
scram
only.Expand description
A struct for the SASL SCRAM-* and SCRAM-*-PLUS mechanisms.
Implementations§
source§impl<S: ScramProvider> Scram<S>
impl<S: ScramProvider> Scram<S>
sourcepub fn new<N: Into<String>, P: Into<Password>>(
username: N,
password: P,
channel_binding: ChannelBinding
) -> Result<Scram<S>, Error>
pub fn new<N: Into<String>, P: Into<Password>>( username: N, password: P, channel_binding: ChannelBinding ) -> Result<Scram<S>, Error>
Constructs a new struct for authenticating using the SASL SCRAM-* and SCRAM-*-PLUS mechanisms, depending on the passed channel binding.
It is recommended that instead you use a Credentials
struct and turn it into the
requested mechanism using from_credentials
.
Trait Implementations§
source§impl<S: ScramProvider> Mechanism for Scram<S>
impl<S: ScramProvider> Mechanism for Scram<S>
source§fn from_credentials(
credentials: Credentials
) -> Result<Scram<S>, MechanismError>
fn from_credentials( credentials: Credentials ) -> Result<Scram<S>, MechanismError>
Creates this mechanism from
Credentials
.Auto Trait Implementations§
impl<S> Freeze for Scram<S>
impl<S> RefUnwindSafe for Scram<S>where
S: RefUnwindSafe,
impl<S> Send for Scram<S>where
S: Send,
impl<S> Sync for Scram<S>where
S: Sync,
impl<S> Unpin for Scram<S>where
S: Unpin,
impl<S> UnwindSafe for Scram<S>where
S: UnwindSafe,
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