pub trait ReLU6LayerTrait: ActivationLayerTrait + ReLU6LayerTraitConst {
    fn as_raw_mut_ReLU6Layer(&mut self) -> *mut c_void;

    fn set_min_value(&mut self, val: f32) { ... }
    fn set_max_value(&mut self, val: f32) { ... }
}

Required Methods

Provided Methods

Implementors