Struct sasl::common::Credentials
source · pub struct Credentials {
pub identity: Identity,
pub secret: Secret,
pub channel_binding: ChannelBinding,
}
Expand description
A struct containing SASL credentials.
Fields§
§identity: Identity
The requested identity.
secret: Secret
The secret used to authenticate.
channel_binding: ChannelBinding
Channel binding data, for *-PLUS mechanisms.
Implementations§
source§impl Credentials
impl Credentials
sourcepub fn with_username<N: Into<String>>(self, username: N) -> Credentials
pub fn with_username<N: Into<String>>(self, username: N) -> Credentials
Creates a new Credentials with the specified username.
sourcepub fn with_password<P: Into<String>>(self, password: P) -> Credentials
pub fn with_password<P: Into<String>>(self, password: P) -> Credentials
Creates a new Credentials with the specified plaintext password.
sourcepub fn with_channel_binding(
self,
channel_binding: ChannelBinding
) -> Credentials
pub fn with_channel_binding( self, channel_binding: ChannelBinding ) -> Credentials
Creates a new Credentials with the specified chanel binding.
Trait Implementations§
source§impl Clone for Credentials
impl Clone for Credentials
source§fn clone(&self) -> Credentials
fn clone(&self) -> Credentials
Returns a copy 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 Credentials
impl Debug for Credentials
source§impl Default for Credentials
impl Default for Credentials
source§fn default() -> Credentials
fn default() -> Credentials
Returns the “default value” for a type. Read more
Auto Trait Implementations§
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