windows::Win32::Networking::BackgroundIntelligentTransferService

Trait AsyncIBackgroundCopyCallback_Impl

pub trait AsyncIBackgroundCopyCallback_Impl: IUnknownImpl {
    // Required methods
    fn Begin_JobTransferred(
        &self,
        pjob: Ref<'_, IBackgroundCopyJob>,
    ) -> Result<()>;
    fn Finish_JobTransferred(&self) -> Result<()>;
    fn Begin_JobError(
        &self,
        pjob: Ref<'_, IBackgroundCopyJob>,
        perror: Ref<'_, IBackgroundCopyError>,
    ) -> Result<()>;
    fn Finish_JobError(&self) -> Result<()>;
    fn Begin_JobModification(
        &self,
        pjob: Ref<'_, IBackgroundCopyJob>,
        dwreserved: u32,
    ) -> Result<()>;
    fn Finish_JobModification(&self) -> Result<()>;
}

Required Methods§

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

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

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

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

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

fn Finish_JobModification(&self) -> 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§