pub trait PowerLayerTraitConst: ActivationLayerTraitConst {
    fn as_raw_PowerLayer(&self) -> *const c_void;

    fn power(&self) -> f32 { ... }
    fn scale(&self) -> f32 { ... }
    fn shift(&self) -> f32 { ... }
}

Required Methods

Provided Methods

Implementors