pub trait IBackgroundCopyCallback3_Impl: Sized + IBackgroundCopyCallback2_Impl {
    // Required method
    fn FileRangesTransferred(
        &self,
        job: Option<&IBackgroundCopyJob>,
        file: Option<&IBackgroundCopyFile>,
        rangecount: u32,
        ranges: *const BG_FILE_RANGE
    ) -> Result<()>;
}

Required Methods§

Object Safety§

This trait is not object safe.

Implementors§