pub enum ChunkUsage_ {
FileBuffer {
path: String,
},
InMemoryFile {
path: String,
},
ReadStriped {
path: String,
},
TemporarySpace,
}
Variants§
Trait Implementations§
source§impl Clone for ChunkUsage_
impl Clone for ChunkUsage_
source§fn clone(&self) -> ChunkUsage_
fn clone(&self) -> ChunkUsage_
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ChunkUsage_
impl Debug for ChunkUsage_
source§impl Hash for ChunkUsage_
impl Hash for ChunkUsage_
source§impl PartialEq<ChunkUsage_> for ChunkUsage_
impl PartialEq<ChunkUsage_> for ChunkUsage_
source§fn eq(&self, other: &ChunkUsage_) -> bool
fn eq(&self, other: &ChunkUsage_) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for ChunkUsage_
impl StructuralEq for ChunkUsage_
impl StructuralPartialEq for ChunkUsage_
Auto Trait Implementations§
impl RefUnwindSafe for ChunkUsage_
impl Send for ChunkUsage_
impl Sync for ChunkUsage_
impl Unpin for ChunkUsage_
impl UnwindSafe for ChunkUsage_
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