[][src]Struct laz::record::LayeredPointRecordCompressor

pub struct LayeredPointRecordCompressor<'a, W: Write> { /* fields omitted */ }

Compress points and store them in layers

See LayeredPointRecordDecompressor for more info in the data organisation.

Implementations

impl<'a, W: Write> LayeredPointRecordCompressor<'a, W>[src]

pub fn new(dst: W) -> Self[src]

pub fn add_field_compressor<T: LayeredFieldCompressor<W> + Send + 'a>(
    &mut self,
    field: T
)
[src]

Trait Implementations

impl<'a, W: Write> RecordCompressor<W> for LayeredPointRecordCompressor<'a, W>[src]

Auto Trait Implementations

impl<'a, W> !RefUnwindSafe for LayeredPointRecordCompressor<'a, W>[src]

impl<'a, W> Send for LayeredPointRecordCompressor<'a, W> where
    W: Send
[src]

impl<'a, W> !Sync for LayeredPointRecordCompressor<'a, W>[src]

impl<'a, W> Unpin for LayeredPointRecordCompressor<'a, W> where
    W: Unpin
[src]

impl<'a, W> !UnwindSafe for LayeredPointRecordCompressor<'a, W>[src]

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.