Trait windows::Win32::System::GroupPolicy::IGPMBackup_Impl

pub trait IGPMBackup_Impl: Sized + IDispatch_Impl {
    // Required methods
    fn ID(&self) -> Result<BSTR>;
    fn GPOID(&self) -> Result<BSTR>;
    fn GPODomain(&self) -> Result<BSTR>;
    fn GPODisplayName(&self) -> Result<BSTR>;
    fn Timestamp(&self) -> Result<f64>;
    fn Comment(&self) -> Result<BSTR>;
    fn BackupDir(&self) -> Result<BSTR>;
    fn Delete(&self) -> Result<()>;
    fn GenerateReport(
        &self,
        gpmreporttype: GPMReportType,
        pvargpmprogress: *const VARIANT,
        pvargpmcancel: *mut VARIANT,
    ) -> Result<IGPMResult>;
    fn GenerateReportToFile(
        &self,
        gpmreporttype: GPMReportType,
        bstrtargetfilepath: &BSTR,
    ) -> Result<IGPMResult>;
}

Required Methods§

fn ID(&self) -> Result<BSTR>

fn GPOID(&self) -> Result<BSTR>

fn GPODomain(&self) -> Result<BSTR>

fn GPODisplayName(&self) -> Result<BSTR>

fn Timestamp(&self) -> Result<f64>

fn Comment(&self) -> Result<BSTR>

fn BackupDir(&self) -> Result<BSTR>

fn Delete(&self) -> Result<()>

fn GenerateReport( &self, gpmreporttype: GPMReportType, pvargpmprogress: *const VARIANT, pvargpmcancel: *mut VARIANT, ) -> Result<IGPMResult>

fn GenerateReportToFile( &self, gpmreporttype: GPMReportType, bstrtargetfilepath: &BSTR, ) -> Result<IGPMResult>

Object Safety§

This trait is not object safe.

Implementors§