[][src]Struct hdf5_sys::h5z::H5Z_class2_t

#[repr(C)]pub struct H5Z_class2_t {
    pub version: c_int,
    pub id: H5Z_filter_t,
    pub encoder_present: c_uint,
    pub decoder_present: c_uint,
    pub name: *const c_char,
    pub can_apply: H5Z_can_apply_func_t,
    pub set_local: H5Z_set_local_func_t,
    pub filter: H5Z_func_t,
}

Fields

version: c_intid: H5Z_filter_tencoder_present: c_uintdecoder_present: c_uintname: *const c_charcan_apply: H5Z_can_apply_func_tset_local: H5Z_set_local_func_tfilter: H5Z_func_t

Trait Implementations

impl Clone for H5Z_class2_t[src]

impl Copy for H5Z_class2_t[src]

impl Debug for H5Z_class2_t[src]

impl Default for H5Z_class2_t[src]

Auto Trait Implementations

impl RefUnwindSafe for H5Z_class2_t

impl !Send for H5Z_class2_t

impl !Sync for H5Z_class2_t

impl Unpin for H5Z_class2_t

impl UnwindSafe for H5Z_class2_t

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.