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

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

Fields

lpVtbl: *const IExecAction2Vtbl

Implementations

impl IExecAction2[src]

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

pub unsafe fn put_HideAppWindow(&self, pHideAppWindow: VARIANT_BOOL) -> HRESULT[src]

Methods from Deref<Target = IExecAction>

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

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

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

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

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

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

Trait Implementations

impl Deref for IExecAction2[src]

type Target = IExecAction

The resulting type after dereferencing.

impl Interface for IExecAction2[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.