Struct pasture_io::las::LasPointFormat5[][src]

#[repr(C, packed)]pub struct LasPointFormat5 {
    pub position: Vector3<f64>,
    pub intensity: u16,
    pub return_number: u8,
    pub number_of_returns: u8,
    pub scan_direction_flag: bool,
    pub edge_of_flight_line: bool,
    pub classification: u8,
    pub scan_angle_rank: i8,
    pub user_data: u8,
    pub point_source_id: u16,
    pub gps_time: f64,
    pub color_rgb: Vector3<u16>,
    pub wave_packet_descriptor_index: u8,
    pub byte_offset_to_waveform_data: u64,
    pub waveform_packet_size: u32,
    pub return_point_waveform_location: f32,
    pub waveform_parameters: Vector3<f32>,
}

Point type for LAS point format 5

Fields

position: Vector3<f64>intensity: u16return_number: u8number_of_returns: u8scan_direction_flag: booledge_of_flight_line: boolclassification: u8scan_angle_rank: i8user_data: u8point_source_id: u16gps_time: f64color_rgb: Vector3<u16>wave_packet_descriptor_index: u8byte_offset_to_waveform_data: u64waveform_packet_size: u32return_point_waveform_location: f32waveform_parameters: Vector3<f32>

Trait Implementations

impl Clone for LasPointFormat5[src]

impl Copy for LasPointFormat5[src]

impl Debug for LasPointFormat5[src]

impl Default for LasPointFormat5[src]

impl From<Point> for LasPointFormat5[src]

impl PartialEq<LasPointFormat5> for LasPointFormat5[src]

impl PointType for LasPointFormat5[src]

impl StructuralPartialEq for LasPointFormat5[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> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Scalar for T where
    T: Copy + PartialEq<T> + Debug + Any
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,