[][src]Struct netcdf::dimension::Dimension

pub struct Dimension<'g> { /* fields omitted */ }

Represents a netcdf dimension

Implementations

impl<'g> Dimension<'g>[src]

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

Get current length of this dimension

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

Checks whether the dimension is growable

pub fn name(&self) -> String[src]

Gets the name of the dimension

pub fn identifier(&self) -> Identifier[src]

Grabs the unique identifier for this dimension, which can be used in add_variable_from_identifiers

Trait Implementations

impl<'g> Clone for Dimension<'g>[src]

impl<'g> Debug for Dimension<'g>[src]

Auto Trait Implementations

impl<'g> RefUnwindSafe for Dimension<'g>

impl<'g> Send for Dimension<'g>

impl<'g> Sync for Dimension<'g>

impl<'g> Unpin for Dimension<'g>

impl<'g> UnwindSafe for Dimension<'g>

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> Pointable for T[src]

type Init = T

The type for initializers.

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.