pub trait NormalizeBBoxLayerTrait: LayerTrait + NormalizeBBoxLayerTraitConst {
// Required method
fn as_raw_mut_NormalizeBBoxLayer(&mut self) -> *mut c_void;
// Provided methods
fn set_pnorm(&mut self, val: f32) { ... }
fn set_epsilon(&mut self, val: f32) { ... }
fn set_across_spatial(&mut self, val: bool) { ... }
}
Expand description
Mutable methods for crate::dnn::NormalizeBBoxLayer
Required Methods§
fn as_raw_mut_NormalizeBBoxLayer(&mut self) -> *mut c_void
Provided Methods§
fn set_pnorm(&mut self, val: f32)
fn set_epsilon(&mut self, val: f32)
fn set_across_spatial(&mut self, val: bool)
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.