pub struct DecompressedChunk {
pub key: VoxelKey,
pub data: Vec<u8>,
pub point_count: u32,
pub point_record_length: u16,
}Expand description
A decompressed point data chunk.
Fields§
§key: VoxelKey§data: Vec<u8>Raw decompressed point record bytes.
point_count: u32§point_record_length: u16Auto Trait Implementations§
impl Freeze for DecompressedChunk
impl RefUnwindSafe for DecompressedChunk
impl Send for DecompressedChunk
impl Sync for DecompressedChunk
impl Unpin for DecompressedChunk
impl UnsafeUnpin for DecompressedChunk
impl UnwindSafe for DecompressedChunk
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