//! A abstract reloadable state core traits.
/// Something that can perform a single load operation.
pubtraitLoader{/// The value to load.
typeValue;/// The error we can encounter while loading.
typeError;/// Load the value.
fnload(&mutself,
)-> impl std::future::Future<Output = Result<Self::Value, Self::Error>>+Send;}