[][src]Struct winapi::um::bits1_5::IBackgroundCopyJob2

#[repr(C)]
pub struct IBackgroundCopyJob2 {
    pub lpVtbl: *const IBackgroundCopyJob2Vtbl,
}

Fields

lpVtbl: *const IBackgroundCopyJob2Vtbl

Methods

impl IBackgroundCopyJob2[src]

pub unsafe fn SetNotifyCmdLine(
    &self,
    Program: LPCWSTR,
    Parameters: LPCWSTR
) -> HRESULT
[src]

pub unsafe fn GetNotifyCmdLine(
    &self,
    pProgram: *mut LPWSTR,
    pParameters: *mut LPWSTR
) -> HRESULT
[src]

pub unsafe fn GetReplyProgress(
    &self,
    pProgress: *mut BG_JOB_REPLY_PROGRESS
) -> HRESULT
[src]

pub unsafe fn GetReplyData(
    &self,
    ppBuffer: *mut *mut byte,
    pLength: *mut UINT64
) -> HRESULT
[src]

pub unsafe fn SetReplyFileName(&self, ReplyFileName: LPCWSTR) -> HRESULT[src]

pub unsafe fn GetReplyFileName(&self, pReplyFileName: *mut LPWSTR) -> HRESULT[src]

pub unsafe fn SetCredentials(
    &self,
    credentials: *mut BG_AUTH_CREDENTIALS
) -> HRESULT
[src]

pub unsafe fn RemoveCredentials(
    &self,
    Target: BG_AUTH_TARGET,
    Scheme: BG_AUTH_SCHEME
) -> HRESULT
[src]

Methods from Deref<Target = IBackgroundCopyJob>

pub unsafe fn AddFileSet(
    &self,
    cFileCount: ULONG,
    pFileSet: *mut BG_FILE_INFO
) -> HRESULT
[src]

pub unsafe fn AddFile(&self, RemoteUrl: LPCWSTR, LocalName: LPCWSTR) -> HRESULT[src]

pub unsafe fn EnumFiles(
    &self,
    pErrorDescription: *mut *mut IEnumBackgroundCopyFiles
) -> HRESULT
[src]

pub unsafe fn Suspend(&self) -> HRESULT[src]

pub unsafe fn Resume(&self) -> HRESULT[src]

pub unsafe fn Cancel(&self) -> HRESULT[src]

pub unsafe fn Complete(&self) -> HRESULT[src]

pub unsafe fn GetId(&self, pVal: *mut GUID) -> HRESULT[src]

pub unsafe fn GetType(&self, pVal: *mut BG_JOB_TYPE) -> HRESULT[src]

pub unsafe fn GetProgress(&self, pVal: *mut BG_JOB_PROGRESS) -> HRESULT[src]

pub unsafe fn GetTimes(&self, pVal: *mut BG_JOB_TIMES) -> HRESULT[src]

pub unsafe fn GetState(&self, pVal: *mut BG_JOB_STATE) -> HRESULT[src]

pub unsafe fn GetError(
    &self,
    ppError: *mut *mut IBackgroundCopyError
) -> HRESULT
[src]

pub unsafe fn GetOwner(&self, pVal: *mut LPWSTR) -> HRESULT[src]

pub unsafe fn SetDisplayName(&self, Val: LPCWSTR) -> HRESULT[src]

pub unsafe fn GetDisplayName(&self, pVal: *mut LPWSTR) -> HRESULT[src]

pub unsafe fn SetDescription(&self, Val: LPCWSTR) -> HRESULT[src]

pub unsafe fn GetDescription(&self, pVal: *mut LPWSTR) -> HRESULT[src]

pub unsafe fn SetPriority(&self, Val: BG_JOB_PRIORITY) -> HRESULT[src]

pub unsafe fn GetPriority(&self, pVal: *mut BG_JOB_PRIORITY) -> HRESULT[src]

pub unsafe fn SetNotifyFlags(&self, Val: ULONG) -> HRESULT[src]

pub unsafe fn GetNotifyFlags(&self, pVal: *mut ULONG) -> HRESULT[src]

pub unsafe fn SetNotifyInterface(&self, Val: *mut IUnknown) -> HRESULT[src]

pub unsafe fn GetNotifyInterface(&self, pVal: *mut *mut IUnknown) -> HRESULT[src]

pub unsafe fn SetMinimumRetryDelay(&self, Seconds: ULONG) -> HRESULT[src]

pub unsafe fn GetMinimumRetryDelay(&self, Seconds: *mut ULONG) -> HRESULT[src]

pub unsafe fn SetNoProgressTimeout(&self, Seconds: ULONG) -> HRESULT[src]

pub unsafe fn GetNoProgressTimeout(&self, Seconds: *mut ULONG) -> HRESULT[src]

pub unsafe fn GetErrorCount(&self, Errors: *mut ULONG) -> HRESULT[src]

pub unsafe fn SetProxySettings(
    &self,
    ProxyUsage: BG_JOB_PROXY_USAGE,
    ProxyList: *const WCHAR,
    ProxyBypassList: *const WCHAR
) -> HRESULT
[src]

pub unsafe fn GetProxySettings(
    &self,
    pProxyUsage: *mut BG_JOB_PROXY_USAGE,
    pProxyList: *mut LPWSTR,
    pProxyBypassListpProxyList: *mut LPWSTR
) -> HRESULT
[src]

pub unsafe fn TakeOwnership(&self) -> HRESULT[src]

Trait Implementations

impl Interface for IBackgroundCopyJob2[src]

impl Deref for IBackgroundCopyJob2[src]

type Target = IBackgroundCopyJob

The resulting type after dereferencing.

Auto Trait Implementations

Blanket Implementations

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]