[][src]Struct winapi_ui_automation::um::taskschd::ITaskFolder

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

Fields

lpVtbl: *const ITaskFolderVtbl

Implementations

impl ITaskFolder[src]

pub unsafe fn get_Name(&self, pName: *mut BSTR) -> HRESULT[src]

pub unsafe fn get_Path(&self, pPath: *mut BSTR) -> HRESULT[src]

pub unsafe fn GetFolder(
    &self,
    Path: BSTR,
    ppFolder: *mut *mut ITaskFolder
) -> HRESULT
[src]

pub unsafe fn GetFolders(
    &self,
    flags: LONG,
    ppFolders: *mut *mut ITaskFolderCollection
) -> HRESULT
[src]

pub unsafe fn CreateFolder(
    &self,
    subFolderName: BSTR,
    sddl: VARIANT,
    ppFolder: *mut *mut ITaskFolder
) -> HRESULT
[src]

pub unsafe fn DeleteFolder(&self, subFolderName: BSTR, flags: LONG) -> HRESULT[src]

pub unsafe fn GetTask(
    &self,
    Path: BSTR,
    ppTask: *mut *mut IRegisteredTask
) -> HRESULT
[src]

pub unsafe fn GetTasks(
    &self,
    flags: LONG,
    ppTasks: *mut *mut IRegisteredTaskCollection
) -> HRESULT
[src]

pub unsafe fn DeleteTask(&self, Name: BSTR, flags: LONG) -> HRESULT[src]

pub unsafe fn RegisterTask(
    &self,
    Path: BSTR,
    XmlText: BSTR,
    flags: LONG,
    UserId: VARIANT,
    password: VARIANT,
    LogonType: TASK_LOGON_TYPE,
    sddl: VARIANT,
    ppTask: *mut *mut IRegisteredTask
) -> HRESULT
[src]

pub unsafe fn RegisterTaskDefinition(
    &self,
    Path: BSTR,
    pDefinition: *const ITaskDefinition,
    flags: LONG,
    UserId: VARIANT,
    password: VARIANT,
    LogonType: TASK_LOGON_TYPE,
    sddl: VARIANT,
    ppTask: *mut *mut IRegisteredTask
) -> HRESULT
[src]

pub unsafe fn GetSecurityDescriptor(
    &self,
    securityInformation: LONG,
    pSddl: *mut BSTR
) -> HRESULT
[src]

pub unsafe fn SetSecurityDescriptor(&self, sddl: BSTR, flags: LONG) -> HRESULT[src]

Methods from Deref<Target = IDispatch>

pub unsafe fn GetTypeInfoCount(&self, pctinfo: *mut UINT) -> HRESULT[src]

pub unsafe fn GetTypeInfo(
    &self,
    iTInfo: UINT,
    lcid: LCID,
    ppTInfo: *mut *mut ITypeInfo
) -> HRESULT
[src]

pub unsafe fn GetIDsOfNames(
    &self,
    riid: REFIID,
    rgszNames: *mut LPOLESTR,
    cNames: UINT,
    lcid: LCID,
    rgDispId: *mut DISPID
) -> HRESULT
[src]

pub unsafe fn Invoke(
    &self,
    dispIdMember: DISPID,
    riid: REFIID,
    lcid: LCID,
    wFlags: WORD,
    pDispParams: *mut DISPPARAMS,
    pVarResult: *mut VARIANT,
    pExcepInfo: *mut EXCEPINFO,
    puArgErr: *mut UINT
) -> HRESULT
[src]

Trait Implementations

impl Deref for ITaskFolder[src]

type Target = IDispatch

The resulting type after dereferencing.

impl Interface for ITaskFolder[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

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

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> 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.