Struct matfile::Array

source ·
pub struct Array { /* private fields */ }
Expand description

A numeric array (the only type supported at the moment).

You can access the arrays of a MatFile either by name or by iterating through all of them:

if let Some(array_a) = mat_file.find_by_name("A") {
    println!("Array \"A\": {:#?}", array_a);
}

for array in mat_file.arrays() {
    println!("Found array named {} of size {:?}", array.name(), array.size());
}

Implementations§

source§

impl Array

source

pub fn name(&self) -> &str

The name of this array.

source

pub fn size(&self) -> &Vec<usize>

The size of this array.

The number of entries in this vector is equal to the number of dimensions of this array. Each array has at least two dimensions. For two-dimensional arrays the first dimension is the number of rows while the second dimension is the number of columns.

source

pub fn ndims(&self) -> usize

The number of dimensions of this array. Is at least two.

source

pub fn data(&self) -> &NumericData

The actual numerical data stored in this array.

if let matfile::NumericData::Double { real: real, imag: _ } = array.data() {
    println!("Real part of the data: {:?}", real);
}

For a more convenient access to the data, consider using the matfile-ndarray crate.

Trait Implementations§

source§

impl Clone for Array

source§

fn clone(&self) -> Array

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for Array

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<f32>>, Dim<[usize; 2]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<f32>, Dim<[Ix; 2]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<f32>>, Dim<[usize; 3]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<f32>, Dim<[Ix; 3]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<f32>>, Dim<[usize; 4]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<f32>, Dim<[Ix; 4]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<f32>>, Dim<[usize; 5]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<f32>, Dim<[Ix; 5]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<f32>>, Dim<[usize; 6]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<f32>, Dim<[Ix; 6]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<f32>>, Dim<IxDynImpl>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayD<Complex<f32>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<f64>>, Dim<[usize; 2]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<f64>, Dim<[Ix; 2]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<f64>>, Dim<[usize; 3]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<f64>, Dim<[Ix; 3]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<f64>>, Dim<[usize; 4]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<f64>, Dim<[Ix; 4]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<f64>>, Dim<[usize; 5]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<f64>, Dim<[Ix; 5]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<f64>>, Dim<[usize; 6]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<f64>, Dim<[Ix; 6]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<f64>>, Dim<IxDynImpl>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayD<Complex<f64>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<i16>>, Dim<[usize; 2]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<i16>, Dim<[Ix; 2]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<i16>>, Dim<[usize; 3]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<i16>, Dim<[Ix; 3]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<i16>>, Dim<[usize; 4]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<i16>, Dim<[Ix; 4]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<i16>>, Dim<[usize; 5]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<i16>, Dim<[Ix; 5]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<i16>>, Dim<[usize; 6]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<i16>, Dim<[Ix; 6]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<i16>>, Dim<IxDynImpl>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayD<Complex<i16>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<i32>>, Dim<[usize; 2]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<i32>, Dim<[Ix; 2]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<i32>>, Dim<[usize; 3]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<i32>, Dim<[Ix; 3]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<i32>>, Dim<[usize; 4]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<i32>, Dim<[Ix; 4]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<i32>>, Dim<[usize; 5]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<i32>, Dim<[Ix; 5]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<i32>>, Dim<[usize; 6]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<i32>, Dim<[Ix; 6]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<i32>>, Dim<IxDynImpl>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayD<Complex<i32>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<i64>>, Dim<[usize; 2]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<i64>, Dim<[Ix; 2]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<i64>>, Dim<[usize; 3]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<i64>, Dim<[Ix; 3]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<i64>>, Dim<[usize; 4]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<i64>, Dim<[Ix; 4]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<i64>>, Dim<[usize; 5]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<i64>, Dim<[Ix; 5]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<i64>>, Dim<[usize; 6]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<i64>, Dim<[Ix; 6]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<i64>>, Dim<IxDynImpl>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayD<Complex<i64>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<i8>>, Dim<[usize; 2]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<i8>, Dim<[Ix; 2]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<i8>>, Dim<[usize; 3]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<i8>, Dim<[Ix; 3]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<i8>>, Dim<[usize; 4]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<i8>, Dim<[Ix; 4]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<i8>>, Dim<[usize; 5]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<i8>, Dim<[Ix; 5]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<i8>>, Dim<[usize; 6]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<i8>, Dim<[Ix; 6]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<i8>>, Dim<IxDynImpl>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayD<Complex<i8>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<u16>>, Dim<[usize; 2]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<u16>, Dim<[Ix; 2]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<u16>>, Dim<[usize; 3]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<u16>, Dim<[Ix; 3]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<u16>>, Dim<[usize; 4]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<u16>, Dim<[Ix; 4]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<u16>>, Dim<[usize; 5]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<u16>, Dim<[Ix; 5]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<u16>>, Dim<[usize; 6]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<u16>, Dim<[Ix; 6]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<u16>>, Dim<IxDynImpl>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayD<Complex<u16>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<u32>>, Dim<[usize; 2]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<u32>, Dim<[Ix; 2]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<u32>>, Dim<[usize; 3]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<u32>, Dim<[Ix; 3]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<u32>>, Dim<[usize; 4]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<u32>, Dim<[Ix; 4]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<u32>>, Dim<[usize; 5]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<u32>, Dim<[Ix; 5]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<u32>>, Dim<[usize; 6]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<u32>, Dim<[Ix; 6]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<u32>>, Dim<IxDynImpl>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayD<Complex<u32>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<u64>>, Dim<[usize; 2]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<u64>, Dim<[Ix; 2]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<u64>>, Dim<[usize; 3]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<u64>, Dim<[Ix; 3]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<u64>>, Dim<[usize; 4]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<u64>, Dim<[Ix; 4]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<u64>>, Dim<[usize; 5]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<u64>, Dim<[Ix; 5]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<u64>>, Dim<[usize; 6]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<u64>, Dim<[Ix; 6]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<u64>>, Dim<IxDynImpl>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayD<Complex<u64>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<u8>>, Dim<[usize; 2]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<u8>, Dim<[Ix; 2]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<u8>>, Dim<[usize; 3]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<u8>, Dim<[Ix; 3]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<u8>>, Dim<[usize; 4]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<u8>, Dim<[Ix; 4]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<u8>>, Dim<[usize; 5]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<u8>, Dim<[Ix; 5]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<u8>>, Dim<[usize; 6]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<Complex<u8>, Dim<[Ix; 6]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<Complex<u8>>, Dim<IxDynImpl>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayD<Complex<u8>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<f32>, Dim<[usize; 2]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<f32, Dim<[Ix; 2]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<f32>, Dim<[usize; 3]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<f32, Dim<[Ix; 3]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<f32>, Dim<[usize; 4]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<f32, Dim<[Ix; 4]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<f32>, Dim<[usize; 5]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<f32, Dim<[Ix; 5]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<f32>, Dim<[usize; 6]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<f32, Dim<[Ix; 6]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<f32>, Dim<IxDynImpl>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayD<f32>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<f64>, Dim<[usize; 2]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<f64, Dim<[Ix; 2]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<f64>, Dim<[usize; 3]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<f64, Dim<[Ix; 3]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<f64>, Dim<[usize; 4]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<f64, Dim<[Ix; 4]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<f64>, Dim<[usize; 5]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<f64, Dim<[Ix; 5]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<f64>, Dim<[usize; 6]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<f64, Dim<[Ix; 6]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<f64>, Dim<IxDynImpl>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayD<f64>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<i16>, Dim<[usize; 2]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<i16, Dim<[Ix; 2]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<i16>, Dim<[usize; 3]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<i16, Dim<[Ix; 3]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<i16>, Dim<[usize; 4]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<i16, Dim<[Ix; 4]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<i16>, Dim<[usize; 5]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<i16, Dim<[Ix; 5]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<i16>, Dim<[usize; 6]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<i16, Dim<[Ix; 6]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<i16>, Dim<IxDynImpl>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayD<i16>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<i32>, Dim<[usize; 2]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<i32, Dim<[Ix; 2]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<i32>, Dim<[usize; 3]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<i32, Dim<[Ix; 3]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<i32>, Dim<[usize; 4]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<i32, Dim<[Ix; 4]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<i32>, Dim<[usize; 5]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<i32, Dim<[Ix; 5]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<i32>, Dim<[usize; 6]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<i32, Dim<[Ix; 6]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<i32>, Dim<IxDynImpl>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayD<i32>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<i64>, Dim<[usize; 2]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<i64, Dim<[Ix; 2]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<i64>, Dim<[usize; 3]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<i64, Dim<[Ix; 3]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<i64>, Dim<[usize; 4]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<i64, Dim<[Ix; 4]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<i64>, Dim<[usize; 5]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<i64, Dim<[Ix; 5]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<i64>, Dim<[usize; 6]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<i64, Dim<[Ix; 6]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<i64>, Dim<IxDynImpl>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayD<i64>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<i8>, Dim<[usize; 2]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<i8, Dim<[Ix; 2]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<i8>, Dim<[usize; 3]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<i8, Dim<[Ix; 3]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<i8>, Dim<[usize; 4]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<i8, Dim<[Ix; 4]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<i8>, Dim<[usize; 5]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<i8, Dim<[Ix; 5]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<i8>, Dim<[usize; 6]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<i8, Dim<[Ix; 6]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<i8>, Dim<IxDynImpl>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayD<i8>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<u16>, Dim<[usize; 2]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<u16, Dim<[Ix; 2]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<u16>, Dim<[usize; 3]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<u16, Dim<[Ix; 3]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<u16>, Dim<[usize; 4]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<u16, Dim<[Ix; 4]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<u16>, Dim<[usize; 5]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<u16, Dim<[Ix; 5]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<u16>, Dim<[usize; 6]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<u16, Dim<[Ix; 6]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<u16>, Dim<IxDynImpl>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayD<u16>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<u32>, Dim<[usize; 2]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<u32, Dim<[Ix; 2]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<u32>, Dim<[usize; 3]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<u32, Dim<[Ix; 3]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<u32>, Dim<[usize; 4]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<u32, Dim<[Ix; 4]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<u32>, Dim<[usize; 5]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<u32, Dim<[Ix; 5]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<u32>, Dim<[usize; 6]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<u32, Dim<[Ix; 6]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<u32>, Dim<IxDynImpl>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayD<u32>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<u64>, Dim<[usize; 2]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<u64, Dim<[Ix; 2]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<u64>, Dim<[usize; 3]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<u64, Dim<[Ix; 3]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<u64>, Dim<[usize; 4]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<u64, Dim<[Ix; 4]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<u64>, Dim<[usize; 5]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<u64, Dim<[Ix; 5]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<u64>, Dim<[usize; 6]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<u64, Dim<[Ix; 6]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<u64>, Dim<IxDynImpl>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayD<u64>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<u8>, Dim<[usize; 2]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<u8, Dim<[Ix; 2]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<u8>, Dim<[usize; 3]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<u8, Dim<[Ix; 3]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<u8>, Dim<[usize; 4]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<u8, Dim<[Ix; 4]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<u8>, Dim<[usize; 5]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<u8, Dim<[Ix; 5]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<u8>, Dim<[usize; 6]>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<Array<u8, Dim<[Ix; 6]>>, Self::Error>

Performs the conversion.
source§

impl TryInto<ArrayBase<OwnedRepr<u8>, Dim<IxDynImpl>>> for &Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayD<u8>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me f32>, Dim<[usize; 2]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, f32, Dim<[Ix; 2]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me f32>, Dim<[usize; 3]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, f32, Dim<[Ix; 3]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me f32>, Dim<[usize; 4]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, f32, Dim<[Ix; 4]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me f32>, Dim<[usize; 5]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, f32, Dim<[Ix; 5]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me f32>, Dim<[usize; 6]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, f32, Dim<[Ix; 6]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me f32>, Dim<IxDynImpl>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayViewD<'me, f32>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me f64>, Dim<[usize; 2]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, f64, Dim<[Ix; 2]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me f64>, Dim<[usize; 3]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, f64, Dim<[Ix; 3]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me f64>, Dim<[usize; 4]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, f64, Dim<[Ix; 4]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me f64>, Dim<[usize; 5]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, f64, Dim<[Ix; 5]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me f64>, Dim<[usize; 6]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, f64, Dim<[Ix; 6]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me f64>, Dim<IxDynImpl>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayViewD<'me, f64>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me i16>, Dim<[usize; 2]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, i16, Dim<[Ix; 2]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me i16>, Dim<[usize; 3]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, i16, Dim<[Ix; 3]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me i16>, Dim<[usize; 4]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, i16, Dim<[Ix; 4]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me i16>, Dim<[usize; 5]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, i16, Dim<[Ix; 5]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me i16>, Dim<[usize; 6]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, i16, Dim<[Ix; 6]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me i16>, Dim<IxDynImpl>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayViewD<'me, i16>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me i32>, Dim<[usize; 2]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, i32, Dim<[Ix; 2]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me i32>, Dim<[usize; 3]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, i32, Dim<[Ix; 3]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me i32>, Dim<[usize; 4]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, i32, Dim<[Ix; 4]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me i32>, Dim<[usize; 5]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, i32, Dim<[Ix; 5]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me i32>, Dim<[usize; 6]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, i32, Dim<[Ix; 6]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me i32>, Dim<IxDynImpl>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayViewD<'me, i32>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me i64>, Dim<[usize; 2]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, i64, Dim<[Ix; 2]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me i64>, Dim<[usize; 3]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, i64, Dim<[Ix; 3]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me i64>, Dim<[usize; 4]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, i64, Dim<[Ix; 4]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me i64>, Dim<[usize; 5]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, i64, Dim<[Ix; 5]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me i64>, Dim<[usize; 6]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, i64, Dim<[Ix; 6]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me i64>, Dim<IxDynImpl>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayViewD<'me, i64>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me i8>, Dim<[usize; 2]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, i8, Dim<[Ix; 2]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me i8>, Dim<[usize; 3]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, i8, Dim<[Ix; 3]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me i8>, Dim<[usize; 4]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, i8, Dim<[Ix; 4]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me i8>, Dim<[usize; 5]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, i8, Dim<[Ix; 5]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me i8>, Dim<[usize; 6]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, i8, Dim<[Ix; 6]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me i8>, Dim<IxDynImpl>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayViewD<'me, i8>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me u16>, Dim<[usize; 2]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, u16, Dim<[Ix; 2]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me u16>, Dim<[usize; 3]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, u16, Dim<[Ix; 3]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me u16>, Dim<[usize; 4]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, u16, Dim<[Ix; 4]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me u16>, Dim<[usize; 5]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, u16, Dim<[Ix; 5]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me u16>, Dim<[usize; 6]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, u16, Dim<[Ix; 6]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me u16>, Dim<IxDynImpl>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayViewD<'me, u16>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me u32>, Dim<[usize; 2]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, u32, Dim<[Ix; 2]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me u32>, Dim<[usize; 3]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, u32, Dim<[Ix; 3]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me u32>, Dim<[usize; 4]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, u32, Dim<[Ix; 4]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me u32>, Dim<[usize; 5]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, u32, Dim<[Ix; 5]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me u32>, Dim<[usize; 6]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, u32, Dim<[Ix; 6]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me u32>, Dim<IxDynImpl>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayViewD<'me, u32>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me u64>, Dim<[usize; 2]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, u64, Dim<[Ix; 2]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me u64>, Dim<[usize; 3]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, u64, Dim<[Ix; 3]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me u64>, Dim<[usize; 4]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, u64, Dim<[Ix; 4]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me u64>, Dim<[usize; 5]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, u64, Dim<[Ix; 5]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me u64>, Dim<[usize; 6]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, u64, Dim<[Ix; 6]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me u64>, Dim<IxDynImpl>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayViewD<'me, u64>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me u8>, Dim<[usize; 2]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, u8, Dim<[Ix; 2]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me u8>, Dim<[usize; 3]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, u8, Dim<[Ix; 3]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me u8>, Dim<[usize; 4]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, u8, Dim<[Ix; 4]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me u8>, Dim<[usize; 5]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, u8, Dim<[Ix; 5]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me u8>, Dim<[usize; 6]>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayView<'me, u8, Dim<[Ix; 6]>>, Self::Error>

Performs the conversion.
source§

impl<'me> TryInto<ArrayBase<ViewRepr<&'me u8>, Dim<IxDynImpl>>> for &'me Array

§

type Error = Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<ArrayViewD<'me, u8>, Self::Error>

Performs the conversion.

Auto Trait Implementations§

§

impl RefUnwindSafe for Array

§

impl Send for Array

§

impl Sync for Array

§

impl Unpin for Array

§

impl UnwindSafe for Array

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.