pub trait RequantizeLayerTraitConst: LayerTraitConst {
    // Required method
    fn as_raw_RequantizeLayer(&self) -> *const c_void;

    // Provided methods
    fn scale(&self) -> f32 { ... }
    fn shift(&self) -> f32 { ... }
}
Expand description

Constant methods for crate::dnn::RequantizeLayer

Required Methods§

Provided Methods§

source

fn scale(&self) -> f32

source

fn shift(&self) -> f32

Implementors§