[][src]Struct laz::las::laszip::LazItemRecordBuilder

pub struct LazItemRecordBuilder { /* fields omitted */ }

Implementations

impl LazItemRecordBuilder[src]

pub fn default_version_of<PointFormat: DefaultVersion>(
    num_extra_bytes: u16
) -> Vec<LazItem>
[src]

pub fn version_1_of<PointFormat: Version1>(num_extra_bytes: u16) -> Vec<LazItem>[src]

pub fn version_2_of<PointFormat: Version2>(num_extra_bytes: u16) -> Vec<LazItem>[src]

pub fn version_3_of<PointFormat: Version3>(num_extra_bytes: u16) -> Vec<LazItem>[src]

pub fn default_for_point_format_id(
    point_format_id: u8,
    num_extra_bytes: u16
) -> Result<Vec<LazItem>>
[src]

pub fn new() -> Self[src]

pub fn add_item(&mut self, item_type: LazItemType) -> &mut Self[src]

pub fn build(&self) -> Vec<LazItem>[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.