[][src]Struct melange::tensor::stack_layout::StackLayout

pub struct StackLayout<T, S> where
    S: NumElements<T>, 
{ /* fields omitted */ }

array-backed contiguous layout stored on the stack that requires a shape known at compile time. This is just a wrapper for the generic_array crate.

StackLayout comes with little runtime overhead and fast I/O because it is entirely stored on the stack.

CAUTION: big StackLayout can overflow the stack and cause a panic.

Trait Implementations

impl<T: Clone, S: Clone> Clone for StackLayout<T, S> where
    S: NumElements<T>, 
[src]

impl<T: Debug, S: Debug> Debug for StackLayout<T, S> where
    S: NumElements<T>, 
[src]

impl<T, S> Default for StackLayout<T, S> where
    S: NumElements<T>,
    T: Default
[src]

impl<T, S> Deref for StackLayout<T, S> where
    S: NumElements<T>,
    <S as NumElements<T>>::Output: 'static, 
[src]

type Target = [T]

The resulting type after dereferencing.

impl<T, S> DerefMut for StackLayout<T, S> where
    S: NumElements<T>,
    <S as NumElements<T>>::Output: 'static, 
[src]

impl<'a, T, S> Layout<'a, T> for StackLayout<T, S> where
    S: StaticShape + NumElements<T>,
    <S as NumElements<T>>::Output: 'static,
    T: 'static, 
[src]

type Iter = Chunks<'a, T>

type View = SliceLayout<'a, T>

impl<'a, T, S> LayoutMut<'a, T> for StackLayout<T, S> where
    S: StaticShape + NumElements<T>,
    <S as NumElements<T>>::Output: 'static,
    T: 'a, 
[src]

type IterMut = ChunksMut<'a, T>

impl<T: PartialEq, S: PartialEq> PartialEq<StackLayout<T, S>> for StackLayout<T, S> where
    S: NumElements<T>, 
[src]

impl<T, S> StructuralPartialEq for StackLayout<T, S> where
    S: NumElements<T>, 
[src]

Auto Trait Implementations

impl<T, S> RefUnwindSafe for StackLayout<T, S> where
    <<S as NumElements<T>>::Output as ArrayLength<T>>::ArrayType: RefUnwindSafe

impl<T, S> Send for StackLayout<T, S> where
    T: Send,
    <S as NumElements<T>>::Output: ArrayLength<T>, 

impl<T, S> Sync for StackLayout<T, S> where
    T: Sync,
    <S as NumElements<T>>::Output: ArrayLength<T>, 

impl<T, S> Unpin for StackLayout<T, S> where
    <<S as NumElements<T>>::Output as ArrayLength<T>>::ArrayType: Unpin

impl<T, S> UnwindSafe for StackLayout<T, S> where
    <<S as NumElements<T>>::Output as ArrayLength<T>>::ArrayType: UnwindSafe

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> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

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.