pub type DynUsersRepository = Arc<dyn UsersRepository + Send + Sync>;Expand description
A thread-safe reference-counted pointer to a dynamic UsersRepository trait
object.
This type alias provides a convenient way to handle user repository instances across multiple threads while maintaining proper reference counting.
Aliased Typeยง
struct DynUsersRepository { /* private fields */ }