Trait AuthClone

Source
pub trait AuthClone {
    // Required method
    fn clone_box(&self) -> Box<dyn Authenticate>;
}
Expand description

Allows for cloning of an authentication system

Required Methods§

Source

fn clone_box(&self) -> Box<dyn Authenticate>

Implementors§