use crate::meta_storage::mem::MemMetaStorage;
#[derive(Debug, Clone, Copy, Default)]
#[non_exhaustive]
pub struct MemMetaStorageOptions {}
impl MemMetaStorageOptions {
pub fn new() -> Self {
Self {}
}
pub fn build(self) -> MemMetaStorage {
MemMetaStorage::default()
}
}