#[repr(C)]pub struct blosc2_storage {
pub contiguous: bool,
pub urlpath: *mut c_char,
pub cparams: *mut blosc2_cparams,
pub dparams: *mut blosc2_dparams,
pub io: *mut blosc2_io,
}Expand description
@brief This struct is meant for holding storage parameters for a for a blosc2 container, allowing to specify, for example, how to interpret the contents included in the schunk.
Fields§
§contiguous: bool§urlpath: *mut c_char§cparams: *mut blosc2_cparams§dparams: *mut blosc2_dparams§io: *mut blosc2_ioTrait Implementations§
Source§impl Clone for blosc2_storage
impl Clone for blosc2_storage
Source§fn clone(&self) -> blosc2_storage
fn clone(&self) -> blosc2_storage
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_storage
impl Debug for blosc2_storage
impl Copy for blosc2_storage
Auto Trait Implementations§
impl Freeze for blosc2_storage
impl RefUnwindSafe for blosc2_storage
impl !Send for blosc2_storage
impl !Sync for blosc2_storage
impl Unpin for blosc2_storage
impl UnwindSafe for blosc2_storage
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