[][src]Enum hidefix::idx::DatasetD

pub enum DatasetD<'a> {
    D0(Dataset<'a, 0>),
    D1(Dataset<'a, 1>),
    D2(Dataset<'a, 2>),
    D3(Dataset<'a, 3>),
    D4(Dataset<'a, 4>),
    D5(Dataset<'a, 5>),
    D6(Dataset<'a, 6>),
    D7(Dataset<'a, 7>),
    D8(Dataset<'a, 8>),
    D9(Dataset<'a, 9>),
}

Dataset in possible dimensions.

Variants

D0(Dataset<'a, 0>)
D1(Dataset<'a, 1>)
D2(Dataset<'a, 2>)
D3(Dataset<'a, 3>)
D4(Dataset<'a, 4>)
D5(Dataset<'a, 5>)
D6(Dataset<'a, 6>)
D7(Dataset<'a, 7>)
D8(Dataset<'a, 8>)
D9(Dataset<'a, 9>)

Implementations

impl DatasetD<'_>[src]

pub fn index(ds: &Dataset) -> Result<DatasetD<'static>, Error>[src]

pub fn as_reader(&self, path: &Path) -> Result<Box<dyn Reader>, Error>[src]

pub fn as_streamer(&self, path: &Path) -> Result<Box<dyn Streamer>, Error>[src]

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

Trait Implementations

impl<'a> Debug for DatasetD<'a>[src]

impl<'de: 'a, 'a> Deserialize<'de> for DatasetD<'a>[src]

impl<'a> Serialize for DatasetD<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for DatasetD<'a>[src]

impl<'a> Send for DatasetD<'a>[src]

impl<'a> Sync for DatasetD<'a>[src]

impl<'a> Unpin for DatasetD<'a>[src]

impl<'a> UnwindSafe for DatasetD<'a>[src]

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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.