pub struct PlyChunkSource<R: BufRead> { /* private fields */ }Expand description
Bounded sequential PLY source for ASCII and little-endian binary vertices.
Implementations§
Source§impl<R: BufRead> PlyChunkSource<R>
impl<R: BufRead> PlyChunkSource<R>
Trait Implementations§
Source§impl<R: BufRead> BoundedSpatialRecordSource for PlyChunkSource<R>
Available on crate feature streaming only.
impl<R: BufRead> BoundedSpatialRecordSource for PlyChunkSource<R>
Available on crate feature
streaming only.Source§fn memory_tracker(&self) -> &MemoryTracker
fn memory_tracker(&self) -> &MemoryTracker
Exact tracker shared by emitted chunk leases.
Source§fn cancellation_token(&self) -> CancellationToken
fn cancellation_token(&self) -> CancellationToken
Cooperative cancellation state checked at chunk boundaries.
Source§fn max_chunk_bytes(&self) -> u64
fn max_chunk_bytes(&self) -> u64
Conservative maximum resident bytes for one emitted chunk.
Source§fn next_chunk(&mut self) -> Option<RecordsResult<SpatialRecordChunk>>
fn next_chunk(&mut self) -> Option<RecordsResult<SpatialRecordChunk>>
Returns the next leased chunk, or
None after an explicit end.Auto Trait Implementations§
impl<R> Freeze for PlyChunkSource<R>where
R: Freeze,
impl<R> RefUnwindSafe for PlyChunkSource<R>where
R: RefUnwindSafe,
impl<R> Send for PlyChunkSource<R>where
R: Send,
impl<R> Sync for PlyChunkSource<R>where
R: Sync,
impl<R> Unpin for PlyChunkSource<R>where
R: Unpin,
impl<R> UnsafeUnpin for PlyChunkSource<R>where
R: UnsafeUnpin,
impl<R> UnwindSafe for PlyChunkSource<R>where
R: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more