[][src]Struct winapi::um::taskschd::ITrigger

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

Fields

lpVtbl: *const ITriggerVtbl

Implementations

impl ITrigger[src]

pub unsafe fn get_Type(&self, pType: *mut TASK_TRIGGER_TYPE2) -> HRESULT[src]

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

pub unsafe fn put_Id(&self, pId: BSTR) -> HRESULT[src]

pub unsafe fn get_Repetition(
    &self,
    ppRepeat: *mut *mut IRepetitionPattern
) -> HRESULT
[src]

pub unsafe fn put_Repetition(
    &self,
    ppRepeat: *const IRepetitionPattern
) -> HRESULT
[src]

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

pub unsafe fn put_ExecutionTimeLimit(&self, pTimeLimit: BSTR) -> HRESULT[src]

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

pub unsafe fn put_StartBoundary(&self, pStart: BSTR) -> HRESULT[src]

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

pub unsafe fn put_EndBoundary(&self, pEnd: BSTR) -> HRESULT[src]

pub unsafe fn get_Enabled(&self, pEnabled: *mut VARIANT_BOOL) -> HRESULT[src]

pub unsafe fn put_Enabled(&self, pEnabled: VARIANT_BOOL) -> 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 ITrigger[src]

type Target = IDispatch

The resulting type after dereferencing.

impl Interface for ITrigger[src]

Auto Trait Implementations

impl !Send for ITrigger

impl !Sync for ITrigger

impl Unpin for ITrigger

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.