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§
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§
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