//! The [`UserStore`] trait — async storage abstraction for users.
use Uuid;
use crate;
use crateStoreFuture;
/// Async storage abstraction for users.
///
/// All methods return a [`StoreFuture`] (boxed future) for object safety,
/// allowing the store to be used as `Arc<dyn UserStore>`.