[][src]Enum jlrs::array::Dimensions

pub enum Dimensions {
    // some variants omitted
}

The dimensions of an n-dimensional array.

Methods

impl Dimensions[src]

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

Returns the number of dimensions.

pub fn n_elements(&self, dimension: u64) -> u64[src]

Returns the number of elements of the nth dimension. Indexing starts at 0.

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

The product of the number of elements of each dimension.

Trait Implementations

impl Clone for Dimensions[src]

impl Debug for Dimensions[src]

impl Into<Dimensions> for u64[src]

impl Into<Dimensions> for (u64,)[src]

impl Into<Dimensions> for (u64, u64)[src]

impl Into<Dimensions> for (u64, u64, u64)[src]

impl Into<Dimensions> for (u64, u64, u64, u64)[src]

impl Into<Dimensions> for (u64, u64, u64, u64, u64)[src]

impl Into<Dimensions> for (u64, u64, u64, u64, u64, u64)[src]

impl Into<Dimensions> for (u64, u64, u64, u64, u64, u64, u64)[src]

impl Into<Dimensions> for (u64, u64, u64, u64, u64, u64, u64, u64)[src]

impl<'_> Into<Dimensions> for &'_ [u64][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.