pub trait MergeRobertsonTrait: MergeExposuresTrait + MergeRobertsonTraitConst {
// Required method
fn as_raw_mut_MergeRobertson(&mut self) -> *mut c_void;
// Provided methods
fn process_with_response(
&mut self,
src: &impl ToInputArray,
dst: &mut impl ToOutputArray,
times: &impl ToInputArray,
response: &impl ToInputArray,
) -> Result<()> { ... }
fn process(
&mut self,
src: &impl ToInputArray,
dst: &mut impl ToOutputArray,
times: &impl ToInputArray,
) -> Result<()> { ... }
}
Expand description
Mutable methods for crate::photo::MergeRobertson
Required Methods§
fn as_raw_mut_MergeRobertson(&mut self) -> *mut c_void
Provided Methods§
fn process_with_response( &mut self, src: &impl ToInputArray, dst: &mut impl ToOutputArray, times: &impl ToInputArray, response: &impl ToInputArray, ) -> Result<()>
fn process( &mut self, src: &impl ToInputArray, dst: &mut impl ToOutputArray, times: &impl ToInputArray, ) -> Result<()>
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.