[][src]Struct hdf5::file::PhaseChangeInfo

pub struct PhaseChangeInfo {
    pub max_list: u32,
    pub min_btree: u32,
}

Threshold values for storage of shared message indexes.

These phase change thresholds determine the point at which the index storage mechanism changes from a more compact list format to a more performance-oriented B-tree format, and vice-versa.

By default, a shared object header message index is initially stored as a compact list. When the number of messages in an index exceeds the threshold value of max_list, storage switches to a B-tree for improved performance. If the number of messages subsequently falls below the min_btree threshold, the index will revert to the list format.

Fields

max_list: u32

Threshold above which storage of a shared object header message index shifts from list to B-tree.

If max_list is set to 0 (zero), shared object header message indexes in the file will be created as B-trees and will never revert to lists.

min_btree: u32

Threshold below which storage of a shared object header message index reverts to list format.

Trait Implementations

impl Clone for PhaseChangeInfo[src]

impl Copy for PhaseChangeInfo[src]

impl Debug for PhaseChangeInfo[src]

impl Default for PhaseChangeInfo[src]

impl Eq for PhaseChangeInfo[src]

impl PartialEq<PhaseChangeInfo> for PhaseChangeInfo[src]

impl StructuralEq for PhaseChangeInfo[src]

impl StructuralPartialEq for PhaseChangeInfo[src]

Auto Trait Implementations

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.