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