pub enum StartStorage {
InMemory(Vec<u8>),
Mapped {
path: PathBuf,
mmap: MmapMut,
},
}Variants§
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for StartStorage
impl RefUnwindSafe for StartStorage
impl Send for StartStorage
impl Sync for StartStorage
impl Unpin for StartStorage
impl UnwindSafe for StartStorage
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more