Trait IVdsMaintenance_Impl
pub trait IVdsMaintenance_Impl: IUnknownImpl {
// Required methods
fn StartMaintenance(
&self,
operation: VDS_MAINTENANCE_OPERATION,
) -> Result<()>;
fn StopMaintenance(
&self,
operation: VDS_MAINTENANCE_OPERATION,
) -> Result<()>;
fn PulseMaintenance(
&self,
operation: VDS_MAINTENANCE_OPERATION,
ulcount: u32,
) -> Result<()>;
}
Required Methods§
fn StartMaintenance(&self, operation: VDS_MAINTENANCE_OPERATION) -> Result<()>
fn StopMaintenance(&self, operation: VDS_MAINTENANCE_OPERATION) -> Result<()>
fn PulseMaintenance( &self, operation: VDS_MAINTENANCE_OPERATION, ulcount: u32, ) -> 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.