pub trait AuthClone {
// Required method
fn clone_box(&self) -> Box<dyn Authenticate>;
}
Expand description
Allows for cloning of an authentication system
pub trait AuthClone {
// Required method
fn clone_box(&self) -> Box<dyn Authenticate>;
}
Allows for cloning of an authentication system