Trait GemmLayerTraitConst

Source
pub trait GemmLayerTraitConst: LayerTraitConst {
    // Required method
    fn as_raw_GemmLayer(&self) -> *const c_void;

    // Provided methods
    fn trans_a(&self) -> bool { ... }
    fn trans_b(&self) -> bool { ... }
    fn alpha(&self) -> f32 { ... }
    fn beta(&self) -> f32 { ... }
}
Expand description

Constant methods for crate::dnn::GemmLayer

Required Methods§

Provided Methods§

Source

fn trans_a(&self) -> bool

Source

fn trans_b(&self) -> bool

Source

fn alpha(&self) -> f32

Source

fn beta(&self) -> f32

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§