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§