Trait User

Source
pub trait User: UserTrait + DynClone { }
Expand description

A cloneable UserTrait.

Note: Using DynClone allows for cloning of trait objects, which is not possible with Clone alone.

Implementors§

Source§

impl<T: UserTrait + DynClone> User for T

Implements User trait for any type that implements UserTrait and DynClone