[][src]Enum opensrdk_linear_algebra::macros::stack::Stack

pub enum Stack<'a, U: Number> {
    Only(Box<dyn SubMatrix<U> + 'a>),
    Horizontal(Vec<Stack<'a, U>>),
    Vertical(Vec<Stack<'a, U>>),
}

Variants

Only(Box<dyn SubMatrix<U> + 'a>)
Horizontal(Vec<Stack<'a, U>>)
Vertical(Vec<Stack<'a, U>>)

Implementations

impl<'a, U> Stack<'a, U> where
    U: Number
[src]

pub fn matrix(&self) -> Matrix<Standard, U>[src]

Auto Trait Implementations

impl<'a, U> !RefUnwindSafe for Stack<'a, U>

impl<'a, U> Send for Stack<'a, U>

impl<'a, U> Sync for Stack<'a, U>

impl<'a, U> Unpin for Stack<'a, U>

impl<'a, U> !UnwindSafe for Stack<'a, U>

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, 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.