pub trait PoolingLayerInt8Trait: PoolingLayerInt8TraitConst + PoolingLayerTrait {
    // Required method
    fn as_raw_mut_PoolingLayerInt8(&mut self) -> *mut c_void;

    // Provided methods
    fn set_input_zp(&mut self, val: i32) { ... }
    fn set_output_zp(&mut self, val: i32) { ... }
    fn set_input_sc(&mut self, val: f32) { ... }
    fn set_output_sc(&mut self, val: f32) { ... }
}
Expand description

Mutable methods for crate::dnn::PoolingLayerInt8

Required Methods§

Provided Methods§

source

fn set_input_zp(&mut self, val: i32)

source

fn set_output_zp(&mut self, val: i32)

source

fn set_input_sc(&mut self, val: f32)

source

fn set_output_sc(&mut self, val: f32)

Object Safety§

This trait is not object safe.

Implementors§