pub enum CompressorType {
None = 0,
PointWise = 1,
PointWiseChunked = 2,
LayeredChunked = 3,
}Expand description
The possibilities for how the compressed data is organized.
Variants§
None = 0
PointWise = 1
No chunks, or rather only 1 chunk with all the points
PointWiseChunked = 2
Compress points into chunks with chunk_size points in each chunks
LayeredChunked = 3
Compress points into chunk, but also separate the different point dimension / fields into layers. This CompressorType is only use for point 6,7,8,9,10
Trait Implementations§
Source§impl Clone for CompressorType
impl Clone for CompressorType
Source§fn clone(&self) -> CompressorType
fn clone(&self) -> CompressorType
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 CompressorType
impl Debug for CompressorType
Source§impl Default for CompressorType
impl Default for CompressorType
Source§impl PartialEq for CompressorType
impl PartialEq for CompressorType
impl Copy for CompressorType
impl Eq for CompressorType
impl StructuralPartialEq for CompressorType
Auto Trait Implementations§
impl Freeze for CompressorType
impl RefUnwindSafe for CompressorType
impl Send for CompressorType
impl Sync for CompressorType
impl Unpin for CompressorType
impl UnwindSafe for CompressorType
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more