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

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

Fields

lpVtbl: *const IEmailActionVtbl

Implementations

impl IEmailAction[src]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pub unsafe fn get_HeaderFields(
    &self,
    ppHeaderFields: *mut *mut ITaskNamedValueCollection
) -> HRESULT
[src]

pub unsafe fn put_HeaderFields(
    &self,
    ppHeaderFields: *const ITaskNamedValueCollection
) -> HRESULT
[src]

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

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

pub unsafe fn get_Attachments(&self, pAttachements: *mut SAFEARRAY) -> HRESULT[src]

pub unsafe fn put_Attachments(&self, pAttachements: SAFEARRAY) -> HRESULT[src]

Methods from Deref<Target = IAction>

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_Type(&self, pType: *mut TASK_ACTION_TYPE) -> HRESULT[src]

Trait Implementations

impl Deref for IEmailAction[src]

type Target = IAction

The resulting type after dereferencing.

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