pub enum MmapKind {
MmapMut(MmapMut),
Mmap(Mmap),
}Expand description
Enum representing either a read-only mmap or a mutable mmap
Variants§
Implementations§
Auto Trait Implementations§
impl Freeze for MmapKind
impl RefUnwindSafe for MmapKind
impl Send for MmapKind
impl Sync for MmapKind
impl Unpin for MmapKind
impl UnwindSafe for MmapKind
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