[][src]Struct hdf5::plist::file_create::FileCreate

#[repr(transparent)]pub struct FileCreate(_);

File creation properties.

Implementations

impl FileCreate[src]

File creation property list.

pub fn try_new() -> Result<Self>[src]

pub fn copy(&self) -> Self[src]

pub fn build() -> FileCreateBuilder[src]

pub fn userblock(&self) -> u64[src]

Retrieves the size of a user block.

pub fn sizes(&self) -> SizeofInfo[src]

Retrieves the size of the offsets and lengths used in the file.

pub fn sym_k(&self) -> SymbolTableInfo[src]

Retrieves the size of the symbol table B-tree 1/2 rank and the symbol table leaf node 1/2 size.

pub fn istore_k(&self) -> u32[src]

Queries the 1/2 rank of an indexed storage B-tree.

pub fn shared_mesg_phase_change(&self) -> PhaseChangeInfo[src]

Retrieves shared object header message phase change information.

pub fn shared_mesg_indexes(&self) -> Vec<SharedMessageIndex>[src]

Retrieves configuration settings for shared message indexes.

pub fn file_space_page_size(&self) -> u64[src]

Retrieves the file space page size.

pub fn file_space_strategy(&self) -> FileSpaceStrategy[src]

Retrieves the file space handling strategy.

Methods from Deref<Target = PropertyList>

pub fn copy(&self) -> Self[src]

Copies the property list.

pub fn has(&self, property: &str) -> bool[src]

Queries whether a property name exists in the property list.

pub fn properties(&self) -> Vec<String>[src]

Iterates over properties in the property list, returning their names.

pub fn len(&self) -> usize[src]

Returns the current number of properties in the property list.

pub fn class(&self) -> Result<PropertyListClass>[src]

Returns the class of the property list.

Methods from Deref<Target = Object>

pub fn id(&self) -> hid_t[src]

pub fn refcount(&self) -> u32[src]

Returns reference count if the handle is valid and 0 otherwise.

pub fn is_valid(&self) -> bool[src]

Returns true if the object has a valid unlocked identifier (false for pre-defined locked identifiers like property list classes).

pub fn id_type(&self) -> H5I_type_t[src]

Returns type of the object.

Trait Implementations

impl Clone for FileCreate[src]

impl Debug for FileCreate[src]

impl Deref for FileCreate[src]

type Target = PropertyList

The resulting type after dereferencing.

impl Eq for FileCreate[src]

impl PartialEq<FileCreate> for FileCreate[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.