15 lines
254 B
Rust
15 lines
254 B
Rust
|
|
//! Provides the SASL "ANONYMOUS" mechanism.
|
||
|
|
|
||
|
|
use sasl::SaslMechanism;
|
||
|
|
|
||
|
|
pub struct Anonymous;
|
||
|
|
|
||
|
|
impl Anonymous {
|
||
|
|
pub fn new() -> Anonymous {
|
||
|
|
Anonymous
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
impl SaslMechanism for Anonymous {
|
||
|
|
fn name() -> &'static str { "ANONYMOUS" }
|
||
|
|
}
|