[][src]Struct laz::las::point0::Point0

pub struct Point0 {
    pub x: i32,
    pub y: i32,
    pub z: i32,
    pub intensity: u16,
    pub number_of_returns_of_given_pulse: u8,
    pub scan_direction_flag: bool,
    pub edge_of_flight_line: bool,
    pub return_number: u8,
    pub classification: u8,
    pub scan_angle_rank: i8,
    pub user_data: u8,
    pub point_source_id: u16,
}

Fields

x: i32y: i32z: i32intensity: u16number_of_returns_of_given_pulse: u8scan_direction_flag: booledge_of_flight_line: boolreturn_number: u8classification: u8scan_angle_rank: i8user_data: u8point_source_id: u16

Methods

impl Point0[src]

pub const SIZE: usize[src]

pub fn populate_bit_fields_from(&mut self, byte: u8)[src]

pub fn bit_fields_to_byte(&self) -> u8[src]

Trait Implementations

impl Clone for Point0[src]

impl Copy for Point0[src]

impl Debug for Point0[src]

impl Default for Point0[src]

impl DefaultVersion for Point0[src]

impl LasPoint0 for Point0[src]

impl Packable for Point0[src]

impl PartialEq<Point0> for Point0[src]

impl StructuralPartialEq for Point0[src]

impl Version1 for Point0[src]

impl Version2 for Point0[src]

Auto Trait Implementations

impl RefUnwindSafe for Point0

impl Send for Point0

impl Sync for Point0

impl Unpin for Point0

impl UnwindSafe for Point0

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> LasPoint0 for T where
    T: Point0Based, 
[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.