pub trait BoxedClone {
    fn boxed_clone(&self) -> Box<dyn AuthMethod>;
}
Expand description

Helper trait to allow cloning of sessions.

Required Methods

Clone the authentication method.

Implementors