#[repr(C)]pub struct blosc2_dparams {
pub nthreads: i16,
pub schunk: *mut c_void,
pub postfilter: blosc2_postfilter_fn,
pub postparams: *mut blosc2_postfilter_params,
}Expand description
@brief The parameters for creating a context for decompression purposes.
In parenthesis it is shown the default value used internally when a 0 (zero) in the fields of the struct is passed to a function.
Fields§
§nthreads: i16§schunk: *mut c_void§postfilter: blosc2_postfilter_fn§postparams: *mut blosc2_postfilter_paramsTrait Implementations§
Source§impl Clone for blosc2_dparams
impl Clone for blosc2_dparams
Source§fn clone(&self) -> blosc2_dparams
fn clone(&self) -> blosc2_dparams
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for blosc2_dparams
impl Debug for blosc2_dparams
Source§impl Default for blosc2_dparams
impl Default for blosc2_dparams
impl Copy for blosc2_dparams
Auto Trait Implementations§
impl Freeze for blosc2_dparams
impl RefUnwindSafe for blosc2_dparams
impl !Send for blosc2_dparams
impl !Sync for blosc2_dparams
impl Unpin for blosc2_dparams
impl UnwindSafe for blosc2_dparams
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