mirror of
https://gitlab.com/xmpp-rs/xmpp-rs.git
synced 2024-07-12 22:21:53 +00:00
add some documentation to src/sasl/mod.rs
This commit is contained in:
parent
a88d9aa566
commit
4f357f773b
1 changed files with 4 additions and 0 deletions
|
@ -1,13 +1,17 @@
|
|||
//! Provides the `SaslMechanism` trait and some implementations.
|
||||
|
||||
/// A struct containing SASL credentials.
|
||||
pub struct SaslCredentials {
|
||||
pub username: String,
|
||||
pub secret: SaslSecret,
|
||||
pub channel_binding: Option<Vec<u8>>,
|
||||
}
|
||||
|
||||
/// Represents a SASL secret, like a password.
|
||||
pub enum SaslSecret {
|
||||
/// No extra data needed.
|
||||
None,
|
||||
/// Password required.
|
||||
Password(String),
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue