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

    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) { ... }
}

Required Methods

Provided Methods

Implementors