Struct pasture_io::las::LASWriter[][src]

pub struct LASWriter { /* fields omitted */ }

PointWriter implementation for LAS/LAZ files

Implementations

impl LASWriter[src]

pub fn from_path_and_header<P: AsRef<Path>>(
    path: P,
    header: Header
) -> Result<Self>
[src]

Creates a new ’LASWriter` from the given path and LAS header

pub fn from_writer_and_header<T: Write + Seek + Send + 'static>(
    writer: T,
    header: Header,
    is_compressed: bool
) -> Result<Self>
[src]

Creates a new ’LASWriter` from the given writer and LAS header

Trait Implementations

impl PointWriter for LASWriter[src]

Auto Trait Implementations

impl !RefUnwindSafe for LASWriter

impl !Send for LASWriter

impl !Sync for LASWriter

impl Unpin for LASWriter

impl !UnwindSafe for LASWriter

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<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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>,