windows::Win32::Networking::BackgroundIntelligentTransferService

Trait IBackgroundCopyCallback_Impl

pub trait IBackgroundCopyCallback_Impl: IUnknownImpl {
    // Required methods
    fn JobTransferred(&self, pjob: Ref<'_, IBackgroundCopyJob>) -> Result<()>;
    fn JobError(
        &self,
        pjob: Ref<'_, IBackgroundCopyJob>,
        perror: Ref<'_, IBackgroundCopyError>,
    ) -> Result<()>;
    fn JobModification(
        &self,
        pjob: Ref<'_, IBackgroundCopyJob>,
        dwreserved: u32,
    ) -> Result<()>;
}

Required Methods§

fn JobTransferred(&self, pjob: Ref<'_, IBackgroundCopyJob>) -> Result<()>

fn JobError( &self, pjob: Ref<'_, IBackgroundCopyJob>, perror: Ref<'_, IBackgroundCopyError>, ) -> Result<()>

fn JobModification( &self, pjob: Ref<'_, IBackgroundCopyJob>, dwreserved: 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.

Implementors§