pub trait DequantizeLayerTrait: DequantizeLayerTraitConst + LayerTrait {
    fn as_raw_mut_DequantizeLayer(&mut self) -> *mut c_void;

    fn set_scale(&mut self, val: f32) { ... }
    fn set_zeropoint(&mut self, val: i32) { ... }
}

Required Methods

Provided Methods

Implementors