#[repr(C)]pub struct blosc2_metalayer {
pub name: *mut c_char,
pub content: *mut u8,
pub content_len: i32,
}Expand description
@brief This struct is meant to store metadata information inside a #blosc2_schunk, allowing to specify, for example, how to interpret the contents included in the schunk.
Fields§
§name: *mut c_char!< The metalayer identifier for Blosc client (e.g. Blosc2 NDim).
content: *mut u8!< The serialized (msgpack preferably) content of the metalayer.
content_len: i32!< The length in bytes of the content.
Trait Implementations§
Source§impl Clone for blosc2_metalayer
impl Clone for blosc2_metalayer
Source§fn clone(&self) -> blosc2_metalayer
fn clone(&self) -> blosc2_metalayer
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_metalayer
impl Debug for blosc2_metalayer
impl Copy for blosc2_metalayer
Auto Trait Implementations§
impl Freeze for blosc2_metalayer
impl RefUnwindSafe for blosc2_metalayer
impl !Send for blosc2_metalayer
impl !Sync for blosc2_metalayer
impl Unpin for blosc2_metalayer
impl UnwindSafe for blosc2_metalayer
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