windows::Win32::Networking::BackgroundIntelligentTransferService

Trait IBackgroundCopyJob3_Impl

pub trait IBackgroundCopyJob3_Impl: IBackgroundCopyJob2_Impl {
    // Required methods
    fn ReplaceRemotePrefix(
        &self,
        oldprefix: &PCWSTR,
        newprefix: &PCWSTR,
    ) -> Result<()>;
    fn AddFileWithRanges(
        &self,
        remoteurl: &PCWSTR,
        localname: &PCWSTR,
        rangecount: u32,
        ranges: *const BG_FILE_RANGE,
    ) -> Result<()>;
    fn SetFileACLFlags(&self, flags: u32) -> Result<()>;
    fn GetFileACLFlags(&self) -> Result<u32>;
}

Required Methods§

fn ReplaceRemotePrefix( &self, oldprefix: &PCWSTR, newprefix: &PCWSTR, ) -> Result<()>

fn AddFileWithRanges( &self, remoteurl: &PCWSTR, localname: &PCWSTR, rangecount: u32, ranges: *const BG_FILE_RANGE, ) -> Result<()>

fn SetFileACLFlags(&self, flags: u32) -> Result<()>

fn GetFileACLFlags(&self) -> Result<u32>

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§