authbox 0.2.5

A lightweight, modular authentication framework for Rust built around traits, async support, and pluggable component
Documentation
1
2
3
4
5
/// Register user  model contract
pub trait RegisterUserInput {
    fn email(&self) -> &str;
    fn password(&self) -> &str;
}