Trait IFsrmClassifierModuleDefinition_Impl
pub trait IFsrmClassifierModuleDefinition_Impl: IFsrmPipelineModuleDefinition_Impl {
// Required methods
fn PropertiesAffected(&self) -> Result<*mut SAFEARRAY>;
fn SetPropertiesAffected(
&self,
propertiesaffected: *const SAFEARRAY,
) -> Result<()>;
fn PropertiesUsed(&self) -> Result<*mut SAFEARRAY>;
fn SetPropertiesUsed(&self, propertiesused: *const SAFEARRAY) -> Result<()>;
fn NeedsExplicitValue(&self) -> Result<VARIANT_BOOL>;
fn SetNeedsExplicitValue(
&self,
needsexplicitvalue: VARIANT_BOOL,
) -> Result<()>;
}
Required Methods§
fn PropertiesAffected(&self) -> Result<*mut SAFEARRAY>
fn SetPropertiesAffected( &self, propertiesaffected: *const SAFEARRAY, ) -> Result<()>
fn PropertiesUsed(&self) -> Result<*mut SAFEARRAY>
fn SetPropertiesUsed(&self, propertiesused: *const SAFEARRAY) -> Result<()>
fn NeedsExplicitValue(&self) -> Result<VARIANT_BOOL>
fn SetNeedsExplicitValue(&self, needsexplicitvalue: VARIANT_BOOL) -> 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.