Trait sasl::server::Mechanism

source ·
pub trait Mechanism {
    // Required methods
    fn name(&self) -> &str;
    fn respond(&mut self, payload: &[u8]) -> Result<Response, MechanismError>;
}

Required Methods§

source

fn name(&self) -> &str

source

fn respond(&mut self, payload: &[u8]) -> Result<Response, MechanismError>

Implementors§

source§

impl Mechanism for Anonymous

Available on crate feature anonymous only.
source§

impl<S, P> Mechanism for Scram<S, P>

Available on crate feature scram only.
source§

impl<V: Validator<Plain>> Mechanism for Plain<V>