SChunk

Struct SChunk 

Source
pub struct SChunk(/* private fields */);
Expand description

Wrapper to blosc2_schunk

Implementations§

Source§

impl SChunk

Source

pub fn new(storage: Storage) -> Self

Source

pub fn copy(&self) -> Self

Source

pub fn frame(&self) -> Result<&[u8]>

Source

pub fn append_buffer<T>(&mut self, data: &[T]) -> Result<usize>

Append data to SChunk, returning new number of chunks

Source

pub fn decompress_chunk<T>( &mut self, nchunk: usize, dst: &mut [T], ) -> Result<usize>

Decompress a chunk, returning number of elements of T written to output buffer

Source

pub fn decompress_chunk_vec<T>(&mut self, nchunk: usize) -> Result<Vec<T>>

Source

pub fn set_slice_buffer( &self, start: usize, stop: usize, buf: &[u8], ) -> Result<()>

Set slice buffer

Source

pub fn get_slice_buffer(&self, start: usize, stop: usize) -> Result<Vec<u8>>

Get uncompressed slice of data from start until stop. Returned as bytes, which can be transmuted/casted into the concrete item type. start/stop is by items, not by bytes

Source

pub fn get_slice_buffer_as_type<T>( &self, start: usize, stop: usize, ) -> Result<Vec<T>>

Convenience method to get_slice_buffer which will transmute resulting bytes buffer into Vec<T> for you. NB This will check T is same size as schunk’s typesize so is fairly safe.

Source

pub fn get_chunk(&self, nchunk: usize) -> Result<Chunk>

Source

pub fn into_vec(self) -> Result<Vec<u8>>

Export this SChunk into a buffer

Source

pub fn from_vec(buf: Vec<u8>) -> Result<Self>

Create a Schunk from an owned Vec<u8>. Data will be owned by the Schunk and released via normal Rust semantics.

Source

pub fn is_contiguous(&self) -> bool

Check if storage of Schunk is contiguous.

Source

pub fn typesize(&self) -> usize

Check typesize

Source

pub fn compression_ratio(&self) -> f32

Compression ratio of the Schunk

Source

pub fn n_chunks(&self) -> usize

Number of chunks

Source

pub fn chunk_shape(&self) -> usize

Chunk shape

Source

pub fn blocksize(&self) -> usize

blocksize

Source

pub fn nbytes(&self) -> usize

Count of uncompressed bytes

Source

pub fn cbytes(&self) -> usize

Count of compressed bytes

Source

pub fn path(&self) -> Option<PathBuf>

Path where the Schunk is stored, if file backed.

Source

pub fn len(&self) -> usize

Returns under of elements in Schunk (nbytes / typesize)

Source

pub fn is_empty(&self) -> bool

Trait Implementations§

Source§

impl Clone for SChunk

Source§

fn clone(&self) -> SChunk

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Drop for SChunk

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

impl Write for SChunk

Source§

fn write(&mut self, buf: &[u8]) -> Result<usize>

Writes a buffer into this writer, returning how many bytes were written. Read more
Source§

fn flush(&mut self) -> Result<()>

Flushes this output stream, ensuring that all intermediately buffered contents reach their destination. Read more
1.36.0 · Source§

fn write_vectored(&mut self, bufs: &[IoSlice<'_>]) -> Result<usize, Error>

Like write, except that it writes from a slice of buffers. Read more
Source§

fn is_write_vectored(&self) -> bool

🔬This is a nightly-only experimental API. (can_vector)
Determines if this Writer has an efficient write_vectored implementation. Read more
1.0.0 · Source§

fn write_all(&mut self, buf: &[u8]) -> Result<(), Error>

Attempts to write an entire buffer into this writer. Read more
Source§

fn write_all_vectored(&mut self, bufs: &mut [IoSlice<'_>]) -> Result<(), Error>

🔬This is a nightly-only experimental API. (write_all_vectored)
Attempts to write multiple buffers into this writer. Read more
1.0.0 · Source§

fn write_fmt(&mut self, args: Arguments<'_>) -> Result<(), Error>

Writes a formatted string into this writer, returning any error encountered. Read more
1.0.0 · Source§

fn by_ref(&mut self) -> &mut Self
where Self: Sized,

Creates a “by reference” adapter for this instance of Write. Read more
Source§

impl Send for SChunk

Auto Trait Implementations§

§

impl Freeze for SChunk

§

impl !RefUnwindSafe for SChunk

§

impl !Sync for SChunk

§

impl Unpin for SChunk

§

impl !UnwindSafe for SChunk

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.