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

pub struct ParLasZipDecompressor<R> { /* fields omitted */ }

Laszip decompressor, that can decompress data using multiple threads

Implementations

impl<R: Read + Seek> ParLasZipDecompressor<R>[src]

pub fn new(mut source: R, vlr: LazVlr) -> Result<Self>[src]

Creates a new decompressor

Fails if no chunk table could be found.

pub fn decompress_many(&mut self, out: &mut [u8]) -> Result<()>[src]

Decompresses many points using multiple threads

For this function to actually use multiple threads, the points buffer shall hold more points that the vlr's chunk_size.

pub fn into_inner(self) -> R[src]

pub fn get_mut(&mut self) -> &mut R[src]

pub fn get(&self) -> &R[src]

Auto Trait Implementations

impl<R> RefUnwindSafe for ParLasZipDecompressor<R> where
    R: RefUnwindSafe
[src]

impl<R> Send for ParLasZipDecompressor<R> where
    R: Send
[src]

impl<R> Sync for ParLasZipDecompressor<R> where
    R: Sync
[src]

impl<R> Unpin for ParLasZipDecompressor<R> where
    R: Unpin
[src]

impl<R> UnwindSafe for ParLasZipDecompressor<R> where
    R: UnwindSafe
[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.