pub trait AuthenticationProviderClone: Send + Sync {
// Required method
fn clone_box(&self) -> Box<dyn AuthenticationProvider>;
}
Expand description
An authentication provider must be cloneable, send
and sync
.
Therefore it has to implement the AuthenticationProviderClone
trait to be cloneable as a boxed object.