pub trait IBackgroundCopyJob5_Impl: Sized + IBackgroundCopyJob4_Impl {
    // Required methods
    fn SetProperty(
        &self,
        propertyid: BITS_JOB_PROPERTY_ID,
        propertyvalue: &BITS_JOB_PROPERTY_VALUE
    ) -> Result<()>;
    fn GetProperty(
        &self,
        propertyid: BITS_JOB_PROPERTY_ID
    ) -> Result<BITS_JOB_PROPERTY_VALUE>;
}

Required Methods§

fn SetProperty( &self, propertyid: BITS_JOB_PROPERTY_ID, propertyvalue: &BITS_JOB_PROPERTY_VALUE ) -> Result<()>

fn GetProperty( &self, propertyid: BITS_JOB_PROPERTY_ID ) -> Result<BITS_JOB_PROPERTY_VALUE>

Object Safety§

This trait is not object safe.

Implementors§