pub trait SplitLayerTraitConst: LayerTraitConst {
// Required method
fn as_raw_SplitLayer(&self) -> *const c_void;
// Provided method
fn outputs_count(&self) -> i32 { ... }
}
Expand description
Constant methods for crate::dnn::SplitLayer
Required Methods§
fn as_raw_SplitLayer(&self) -> *const c_void
Provided Methods§
Sourcefn outputs_count(&self) -> i32
fn outputs_count(&self) -> i32
Number of copies that will be produced (is ignored when negative).
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.