pub trait QuantizeLayerTrait: LayerTrait + QuantizeLayerTraitConst {
    fn as_raw_mut_QuantizeLayer(&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§