pub trait ConvolutionLayerTraitConst: BaseConvolutionLayerTraitConst {
    // Required method
    fn as_raw_ConvolutionLayer(&self) -> *const c_void;

    // Provided methods
    fn fused_activation(&self) -> bool { ... }
    fn fused_add(&self) -> bool { ... }
    fn is_conv_2d(&self) -> bool { ... }
    fn use_winograd(&self) -> bool { ... }
}
Expand description

Constant methods for crate::dnn::ConvolutionLayer

Required Methods§

Provided Methods§

Implementors§