Type Alias RMatrix4D

Source
pub type RMatrix4D<T> = RArray<T, 4>;

Aliased Type§

pub struct RMatrix4D<T> {
    robj: Robj,
    _data: PhantomData<T>,
}

Fields§

§robj: Robj

Owning Robj (probably should be a Pin).

§_data: PhantomData<T>

Data type of the n-array

Trait Implementations§

Source§

impl<T> TryFrom<&Robj> for RMatrix4D<T>
where Robj: for<'a> AsTypedSlice<'a, T>,

Source§

type Error = Error

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

fn try_from(robj: &Robj) -> Result<Self>

Performs the conversion.
Source§

impl<T> TryFrom<Robj> for RMatrix4D<T>
where Robj: for<'a> AsTypedSlice<'a, T>,

Source§

type Error = Error

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

fn try_from(robj: Robj) -> Result<Self>

Performs the conversion.