pub trait NewCloned: ReprOwned {
// Required method
fn new_cloned(v: MatRef<'_, Self>) -> Mat<Self>;
}Expand description
Create a new Mat cloned from a view.
Required Methods§
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.