Struct pasture_io::las::LasPointFormat1[][src]

#[repr(C, packed)]pub struct LasPointFormat1 {
    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,
}

Point type for LAS point format 1

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: f64

Trait Implementations

impl Clone for LasPointFormat1[src]

impl Copy for LasPointFormat1[src]

impl Debug for LasPointFormat1[src]

impl Default for LasPointFormat1[src]

impl From<Point> for LasPointFormat1[src]

impl PartialEq<LasPointFormat1> for LasPointFormat1[src]

impl PointType for LasPointFormat1[src]

impl StructuralPartialEq for LasPointFormat1[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>,