pub enum PointFormat {
Format0 = 0,
Format1 = 1,
Format2 = 2,
Format3 = 3,
Format4 = 4,
Format5 = 5,
Format6 = 6,
Format7 = 7,
Format8 = 8,
Format9 = 9,
Format10 = 10,
}Expand description
Point format enumeration
Variants§
Format0 = 0
Format 0: X, Y, Z, Intensity, Return Number, etc.
Format1 = 1
Format 1: Format 0 + GPS Time
Format2 = 2
Format 2: Format 0 + RGB
Format3 = 3
Format 3: Format 1 + RGB
Format4 = 4
Format 4: Format 1 + Wave Packets
Format5 = 5
Format 5: Format 3 + Wave Packets
Format6 = 6
Format 6: Format 1 + Extended (LAS 1.4)
Format7 = 7
Format 7: Format 6 + RGB
Format8 = 8
Format 8: Format 7 + NIR
Format9 = 9
Format 9: Format 6 + Wave Packets
Format10 = 10
Format 10: Format 8 + Wave Packets
Trait Implementations§
Source§impl Clone for PointFormat
impl Clone for PointFormat
Source§fn clone(&self) -> PointFormat
fn clone(&self) -> PointFormat
Returns a duplicate 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 PointFormat
impl Debug for PointFormat
Source§impl<'de> Deserialize<'de> for PointFormat
impl<'de> Deserialize<'de> for PointFormat
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for PointFormat
impl PartialEq for PointFormat
Source§impl Serialize for PointFormat
impl Serialize for PointFormat
Source§impl TryFrom<u8> for PointFormat
impl TryFrom<u8> for PointFormat
impl Copy for PointFormat
impl Eq for PointFormat
impl StructuralPartialEq for PointFormat
Auto Trait Implementations§
impl Freeze for PointFormat
impl RefUnwindSafe for PointFormat
impl Send for PointFormat
impl Sync for PointFormat
impl Unpin for PointFormat
impl UnsafeUnpin for PointFormat
impl UnwindSafe for PointFormat
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