[][src]Struct hdf5_sys::h5fd::H5FD_t

#[repr(C)]pub struct H5FD_t {
    pub driver_id: hid_t,
    pub cls: *const H5FD_class_t,
    pub fileno: c_ulong,
    pub feature_flags: c_ulong,
    pub maxaddr: haddr_t,
    pub base_addr: haddr_t,
    pub threshold: hsize_t,
    pub alignment: hsize_t,
}

Fields

driver_id: hid_tcls: *const H5FD_class_tfileno: c_ulongfeature_flags: c_ulongmaxaddr: haddr_tbase_addr: haddr_tthreshold: hsize_talignment: hsize_t

Trait Implementations

impl Clone for H5FD_t[src]

impl Copy for H5FD_t[src]

impl Debug for H5FD_t[src]

impl Default for H5FD_t[src]

Auto Trait Implementations

impl RefUnwindSafe for H5FD_t

impl !Send for H5FD_t

impl !Sync for H5FD_t

impl Unpin for H5FD_t

impl UnwindSafe for H5FD_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.