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

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Converts to this type from the input type.

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.