Trait TryInto

Source
pub trait TryInto<T> {
    type Error;

    // Required method
    fn try_into(self) -> Result<T, Self::Error>;
}
Expand description

This trait is at the time of this writing a nightly-only experimental API and so we just replicate it here, so it will be easy to switch to it later on.

Required Associated Types§

Required Methods§

Source

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

Implementations on Foreign Types§

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Source§

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

Source§

type Error = Error

Source§

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

Implementors§