[][src]Struct winapi::um::bits::IBackgroundCopyJob

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

Fields

lpVtbl: *const IBackgroundCopyJobVtbl

Methods

impl IBackgroundCopyJob[src]

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]

Methods from Deref<Target = IUnknown>

pub unsafe fn QueryInterface(
    &self,
    riid: REFIID,
    ppvObject: *mut *mut c_void
) -> HRESULT
[src]

pub unsafe fn AddRef(&self) -> ULONG[src]

pub unsafe fn Release(&self) -> ULONG[src]

Trait Implementations

impl Interface for IBackgroundCopyJob[src]

impl Deref for IBackgroundCopyJob[src]

type Target = IUnknown

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]