[][src]Struct hdf5::PropertyList

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

Represents the HDF5 property list.

Implementations

impl PropertyList[src]

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 PropertyList[src]

impl Debug for PropertyList[src]

impl Deref for PropertyList[src]

type Target = Object

The resulting type after dereferencing.

impl Eq for PropertyList[src]

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