pub trait MVNLayerTraitConst: LayerTraitConst {
// Required method
fn as_raw_MVNLayer(&self) -> *const c_void;
// Provided methods
fn eps(&self) -> f32 { ... }
fn norm_variance(&self) -> bool { ... }
fn across_channels(&self) -> bool { ... }
}
Expand description
Constant methods for crate::dnn::MVNLayer
Required Methods§
fn as_raw_MVNLayer(&self) -> *const c_void
Provided Methods§
fn eps(&self) -> f32
fn norm_variance(&self) -> bool
fn across_channels(&self) -> 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.