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

pub enum LazItemType {
    Byte(u16),
    Point10,
    GpsTime,
    RGB12,
    Point14,
    RGB14,
    RGBNIR14,
    Byte14(u16),
}

The different type of data / fields found in the definition of LAS points

Variants

Byte(u16)

ExtraBytes for LAS versions <= 1.3 & point format <= 5

Point10

Point10 is the Point format id 0 of LAS for versions <= 1.3 & point format <= 5

GpsTime

GpsTime for LAS versions <= 1.3 & point format <= 5

RGB12

RGB for LAS versions <= 1.3 & point format <= 5

Point14

Point14 is the Point format id 6 of LAS for versions >= 1.4 & point format >= 6

RGB14

RGB for LAS versions >= 1.4

RGBNIR14

RGB + Nir for LAS versions >= 1.4

Byte14(u16)

ExtraBytes for LAS versions >= 1.4

Trait Implementations

impl Clone for LazItemType[src]

impl Copy for LazItemType[src]

impl Debug for LazItemType[src]

impl From<LazItemType> for u16[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.