[][src]Enum laz::las::laszip::CompressorType

pub enum CompressorType {
    None,
    PointWise,
    PointWiseChunked,
    LayeredChunked,
}

Variants

None
PointWise

No chunks, or rather only 1 chunk with all the points

PointWiseChunked

Compress points into chunks with chunk_size points in each chunks

LayeredChunked

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

impl Clone for CompressorType[src]

impl Copy for CompressorType[src]

impl Debug for CompressorType[src]

impl Default for CompressorType[src]

impl PartialEq<CompressorType> for CompressorType[src]

impl StructuralPartialEq for CompressorType[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.