pub trait User: UserTrait + DynClone { }
A cloneable UserTrait.
UserTrait
Note: Using DynClone allows for cloning of trait objects, which is not possible with Clone alone.
DynClone
Clone
Implements User trait for any type that implements UserTrait and DynClone