[][src]Struct laz::las::file::QuickHeader

pub struct QuickHeader {
    pub major: u8,
    pub minor: u8,
    pub offset_to_points: u32,
    pub num_vlrs: u32,
    pub point_format_id: u8,
    pub point_size: u16,
    pub num_points: u64,
    pub header_size: u16,
}

LAS header with only the minimum information to be able to read points contained in a LAS file.

Fields

major: u8minor: u8offset_to_points: u32num_vlrs: u32point_format_id: u8point_size: u16num_points: u64header_size: u16

Implementations

impl QuickHeader[src]

pub fn read_from<R: Read + Seek>(src: &mut R) -> Result<Self>[src]

pub fn num_extra_bytes(&self) -> u16[src]

Trait Implementations

impl Debug for QuickHeader[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, 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.