[][src]Struct ndarray::IxDynImpl

pub struct IxDynImpl(_);

Dynamic dimension or index type.

Use IxDyn directly. This type implements a dynamic number of dimensions or indices. Short dimensions are stored inline and don't need any dynamic memory allocation.

Trait Implementations

impl IntoDimension for IxDynImpl[src]

type Dim = IxDyn

impl<'a> From<&'a [usize]> for IxDynImpl[src]

impl From<Vec<usize>> for IxDynImpl[src]

impl Clone for IxDynImpl[src]

impl Default for IxDynImpl[src]

impl Eq for IxDynImpl[src]

impl<'a> IntoIterator for &'a IxDynImpl[src]

type Item = &'a Ix

The type of the elements being iterated over.

type IntoIter = <&'a [Ix] as IntoIterator>::IntoIter

Which kind of iterator are we turning this into?

impl PartialEq<IxDynImpl> for IxDynImpl[src]

impl Deref for IxDynImpl[src]

type Target = [Ix]

The resulting type after dereferencing.

impl DerefMut for IxDynImpl[src]

impl Debug for IxDynImpl[src]

impl<J> Index<J> for IxDynImpl where
    [Ix]: Index<J>, 
[src]

type Output = <[Ix] as Index<J>>::Output

The returned type after indexing.

impl<J> IndexMut<J> for IxDynImpl where
    [Ix]: IndexMut<J>, 
[src]

impl Hash for IxDynImpl[src]

Auto Trait Implementations

Blanket Implementations

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.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]