#[repr(C)]pub struct blosc2_filter {
pub id: u8,
pub name: *mut c_char,
pub version: u8,
pub forward: blosc2_filter_forward_cb,
pub backward: blosc2_filter_backward_cb,
}Expand description
@brief The parameters for a user-defined filter.
Fields§
§id: u8§name: *mut c_char§version: u8§forward: blosc2_filter_forward_cb§backward: blosc2_filter_backward_cbTrait Implementations§
Source§impl Clone for blosc2_filter
impl Clone for blosc2_filter
Source§fn clone(&self) -> blosc2_filter
fn clone(&self) -> blosc2_filter
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_filter
impl Debug for blosc2_filter
impl Copy for blosc2_filter
Auto Trait Implementations§
impl Freeze for blosc2_filter
impl RefUnwindSafe for blosc2_filter
impl !Send for blosc2_filter
impl !Sync for blosc2_filter
impl Unpin for blosc2_filter
impl UnwindSafe for blosc2_filter
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