Enum parallel_processor::memory_fs::file::internal::UnderlyingFile
source · pub enum UnderlyingFile {
NotOpened,
MemoryOnly,
MemoryPreferred,
WriteMode {
file: Arc<(PathBuf, Mutex<File>)>,
chunk_position: usize,
},
ReadMode(Option<FileBuffer>),
}
Variants
NotOpened
MemoryOnly
MemoryPreferred
WriteMode
ReadMode(Option<FileBuffer>)
Auto Trait Implementations
impl !RefUnwindSafe for UnderlyingFile
impl Send for UnderlyingFile
impl Sync for UnderlyingFile
impl Unpin for UnderlyingFile
impl !UnwindSafe for UnderlyingFile
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more