[][src]Struct hdf5_sys::h5ac::H5AC_cache_config_t

#[repr(C)]pub struct H5AC_cache_config_t {
    pub version: c_int,
    pub rpt_fcn_enabled: hbool_t,
    pub open_trace_file: hbool_t,
    pub close_trace_file: hbool_t,
    pub trace_file_name: [c_char; 1025],
    pub evictions_enabled: hbool_t,
    pub set_initial_size: hbool_t,
    pub initial_size: size_t,
    pub min_clean_fraction: c_double,
    pub max_size: size_t,
    pub min_size: size_t,
    pub epoch_length: c_long,
    pub incr_mode: H5C_cache_incr_mode,
    pub lower_hr_threshold: c_double,
    pub increment: c_double,
    pub apply_max_increment: hbool_t,
    pub max_increment: size_t,
    pub flash_incr_mode: H5C_cache_flash_incr_mode,
    pub flash_multiple: c_double,
    pub flash_threshold: c_double,
    pub decr_mode: H5C_cache_decr_mode,
    pub upper_hr_threshold: c_double,
    pub decrement: c_double,
    pub apply_max_decrement: hbool_t,
    pub max_decrement: size_t,
    pub epochs_before_eviction: c_int,
    pub apply_empty_reserve: hbool_t,
    pub empty_reserve: c_double,
    pub dirty_bytes_threshold: size_t,
    pub metadata_write_strategy: c_int,
}

Fields

version: c_intrpt_fcn_enabled: hbool_topen_trace_file: hbool_tclose_trace_file: hbool_ttrace_file_name: [c_char; 1025]evictions_enabled: hbool_tset_initial_size: hbool_tinitial_size: size_tmin_clean_fraction: c_doublemax_size: size_tmin_size: size_tepoch_length: c_longincr_mode: H5C_cache_incr_modelower_hr_threshold: c_doubleincrement: c_doubleapply_max_increment: hbool_tmax_increment: size_tflash_incr_mode: H5C_cache_flash_incr_modeflash_multiple: c_doubleflash_threshold: c_doubledecr_mode: H5C_cache_decr_modeupper_hr_threshold: c_doubledecrement: c_doubleapply_max_decrement: hbool_tmax_decrement: size_tepochs_before_eviction: c_intapply_empty_reserve: hbool_tempty_reserve: c_doubledirty_bytes_threshold: size_tmetadata_write_strategy: c_int

Trait Implementations

impl Clone for H5AC_cache_config_t[src]

impl Copy for H5AC_cache_config_t[src]

impl Default for H5AC_cache_config_t[src]

Auto Trait Implementations

impl RefUnwindSafe for H5AC_cache_config_t

impl Send for H5AC_cache_config_t

impl Sync for H5AC_cache_config_t

impl Unpin for H5AC_cache_config_t

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