[]Enum tract_tensorflow::prelude::tract_linalg::frame::mmm::PanelStore

#[repr(C, usize)]pub enum PanelStore<T> where
    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 for PanelStore<T> where
    T: Clone + Copy

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

impl<T> Debug for PanelStore<T> where
    T: Copy + Debug

impl<T> PartialEq<PanelStore<T>> for PanelStore<T> where
    T: PartialEq<T> + Copy

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> Downcast for T where
    T: Any

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.