pub trait SoftmaxLayerTrait: LayerTrait + SoftmaxLayerTraitConst {
// Required method
fn as_raw_mut_SoftmaxLayer(&mut self) -> *mut c_void;
// Provided method
fn set_log_soft_max(&mut self, val: bool) { ... }
}
Expand description
Mutable methods for crate::dnn::SoftmaxLayer
Required Methods§
fn as_raw_mut_SoftmaxLayer(&mut self) -> *mut c_void
Provided Methods§
fn set_log_soft_max(&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.