xmpp-rs/src/sasl/mechanisms/anonymous.rs

15 lines
254 B
Rust
Raw Normal View History

2017-02-24 18:29:10 +01:00
//! 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" }
}