pub trait IVdsMaintenance_Impl: Sized {
    // 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<()>

Object Safety§

This trait is not object safe.

Implementors§