pub trait Reduce2LayerTraitConst: LayerTraitConst {
// Required method
fn as_raw_Reduce2Layer(&self) -> *const c_void;
// Provided methods
fn reduce_type(&self) -> Reduce2Layer_ReduceType { ... }
fn keepdims(&self) -> bool { ... }
fn noop_with_empty_axes(&self) -> bool { ... }
fn axes(&self) -> Vector<i32> { ... }
}Expand description
Constant methods for crate::dnn::Reduce2Layer
Required Methods§
fn as_raw_Reduce2Layer(&self) -> *const c_void
Provided Methods§
fn reduce_type(&self) -> Reduce2Layer_ReduceType
fn keepdims(&self) -> bool
fn noop_with_empty_axes(&self) -> bool
fn axes(&self) -> Vector<i32>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".