pub trait NullWobbleSuppressorTrait: NullWobbleSuppressorTraitConst + WobbleSuppressorBaseTrait {
// Required method
fn as_raw_mut_NullWobbleSuppressor(&mut self) -> *mut c_void;
// Provided method
fn suppress(
&mut self,
idx: i32,
frame: &impl MatTraitConst,
result: &mut impl MatTrait,
) -> Result<()> { ... }
}
Expand description
Mutable methods for crate::videostab::NullWobbleSuppressor
Required Methods§
fn as_raw_mut_NullWobbleSuppressor(&mut self) -> *mut c_void
Provided Methods§
fn suppress( &mut self, idx: i32, frame: &impl MatTraitConst, result: &mut impl MatTrait, ) -> Result<()>
Object Safety§
This trait is not object safe.