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

    fn set_scales(&mut self, val: Vector<f32>) { ... }
    fn set_zeropoints(&mut self, val: Vector<i32>) { ... }
}

Required Methods§

Provided Methods§

Implementors§