[][src]Struct tract_linalg::frame::mmm::MatMatMulKerSpec

#[repr(C)]pub struct MatMatMulKerSpec<'a, TA, TB, TC, TI> where
    TA: Copy,
    TB: Copy,
    TC: Copy,
    TI: Copy + Debug
{ pub a: &'a PanelStore<TA>, pub b: &'a PanelStore<TB>, pub c: &'a PanelStore<TC>, pub linear: &'a LinearSpec, pub non_linear: *const FusedKerSpec<TI>, }

Fields

a: &'a PanelStore<TA>b: &'a PanelStore<TB>c: &'a PanelStore<TC>linear: &'a LinearSpecnon_linear: *const FusedKerSpec<TI>

Trait Implementations

impl<'a, TA: Clone, TB: Clone, TC: Clone, TI: Clone> Clone for MatMatMulKerSpec<'a, TA, TB, TC, TI> where
    TA: Copy,
    TB: Copy,
    TC: Copy,
    TI: Copy + Debug
[src]

impl<'a, TA: Copy, TB: Copy, TC: Copy, TI: Copy> Copy for MatMatMulKerSpec<'a, TA, TB, TC, TI> where
    TA: Copy,
    TB: Copy,
    TC: Copy,
    TI: Copy + Debug
[src]

impl<'a, TA: Debug, TB: Debug, TC: Debug, TI: Debug> Debug for MatMatMulKerSpec<'a, TA, TB, TC, TI> where
    TA: Copy,
    TB: Copy,
    TC: Copy,
    TI: Copy + Debug
[src]

impl<'a, TA: PartialEq, TB: PartialEq, TC: PartialEq, TI: PartialEq> PartialEq<MatMatMulKerSpec<'a, TA, TB, TC, TI>> for MatMatMulKerSpec<'a, TA, TB, TC, TI> where
    TA: Copy,
    TB: Copy,
    TC: Copy,
    TI: Copy + Debug
[src]

impl<'a, TA, TB, TC, TI> StructuralPartialEq for MatMatMulKerSpec<'a, TA, TB, TC, TI> where
    TA: Copy,
    TB: Copy,
    TC: Copy,
    TI: Copy + Debug
[src]

Auto Trait Implementations

impl<'a, TA, TB, TC, TI> RefUnwindSafe for MatMatMulKerSpec<'a, TA, TB, TC, TI> where
    TA: RefUnwindSafe,
    TB: RefUnwindSafe,
    TC: RefUnwindSafe,
    TI: RefUnwindSafe

impl<'a, TA, TB, TC, TI> !Send for MatMatMulKerSpec<'a, TA, TB, TC, TI>

impl<'a, TA, TB, TC, TI> !Sync for MatMatMulKerSpec<'a, TA, TB, TC, TI>

impl<'a, TA, TB, TC, TI> Unpin for MatMatMulKerSpec<'a, TA, TB, TC, TI>

impl<'a, TA, TB, TC, TI> UnwindSafe for MatMatMulKerSpec<'a, TA, TB, TC, TI> where
    TA: RefUnwindSafe,
    TB: RefUnwindSafe,
    TC: RefUnwindSafe,
    TI: 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.