[][src]Enum tract_linalg::frame::mmm::PanelStore

#[repr(C, usize)]pub enum PanelStore<T: Copy> {
    Strides {
        ptr: *mut T,
        row_byte_stride: isize,
        col_byte_stride: isize,
        item_size: usize,
    },
    Packed {
        ptr: *const T,
    },
    OffsetsAndPtrs {
        row_byte_offsets: *const isize,
        col_ptrs: *const *const T,
    },
    VecStride {
        ptr: *const T,
        byte_stride: isize,
        item_size: usize,
    },
}

Variants

Strides

Fields of Strides

ptr: *mut Trow_byte_stride: isizecol_byte_stride: isizeitem_size: usize
Packed

Fields of Packed

ptr: *const T
OffsetsAndPtrs

Fields of OffsetsAndPtrs

row_byte_offsets: *const isizecol_ptrs: *const *const T
VecStride

Fields of VecStride

ptr: *const Tbyte_stride: isizeitem_size: usize

Trait Implementations

impl<T: Clone + Copy> Clone for PanelStore<T>[src]

impl<T: Copy> Copy for PanelStore<T>[src]

impl<T: Debug + Copy> Debug for PanelStore<T>[src]

impl<T: PartialEq + Copy> PartialEq<PanelStore<T>> for PanelStore<T>[src]

impl<T: Copy> StructuralPartialEq for PanelStore<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for PanelStore<T> where
    T: RefUnwindSafe

impl<T> !Send for PanelStore<T>

impl<T> !Sync for PanelStore<T>

impl<T> Unpin for PanelStore<T>

impl<T> UnwindSafe for PanelStore<T> where
    T: RefUnwindSafe

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> DynClone for T where
    T: Clone
[src]

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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.