pub trait Detail_FeaturesMatcherTraitConst {
// Required method
fn as_raw_Detail_FeaturesMatcher(&self) -> *const c_void;
// Provided method
fn is_thread_safe(&self) -> Result<bool> { ... }
}Expand description
Constant methods for crate::stitching::Detail_FeaturesMatcher
Required Methods§
fn as_raw_Detail_FeaturesMatcher(&self) -> *const c_void
Provided Methods§
Sourcefn is_thread_safe(&self) -> Result<bool>
fn is_thread_safe(&self) -> Result<bool>
§Returns
True, if it’s possible to use the same matcher instance in parallel, false otherwise
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".