rust_inbox 0.0.3

IMAP client for Rust
Documentation
1
2
3
4
/// This will allow plugable authentication mechanisms.
pub trait Authenticator {
    fn process(&self, String) -> String;
}