ITaskDefinitionVtbl

Struct ITaskDefinitionVtbl 

Source
#[repr(C)]
pub struct ITaskDefinitionVtbl {
Show 15 fields pub parent: IDispatchVtbl, pub get_RegistrationInfo: unsafe extern "system" fn(This: *mut ITaskDefinition, ppRegistrationInfo: *mut *mut IRegistrationInfo) -> HRESULT, pub put_RegistrationInfo: unsafe extern "system" fn(This: *mut ITaskDefinition, ppRegistrationInfo: *const IRegistrationInfo) -> HRESULT, pub get_Triggers: unsafe extern "system" fn(This: *mut ITaskDefinition, ppTriggers: *mut *mut ITriggerCollection) -> HRESULT, pub put_Triggers: unsafe extern "system" fn(This: *mut ITaskDefinition, ppTriggers: *const ITriggerCollection) -> HRESULT, pub get_Settings: unsafe extern "system" fn(This: *mut ITaskDefinition, ppSettings: *mut *mut ITaskSettings) -> HRESULT, pub put_Settings: unsafe extern "system" fn(This: *mut ITaskDefinition, ppSettings: *const ITaskSettings) -> HRESULT, pub get_Data: unsafe extern "system" fn(This: *mut ITaskDefinition, pData: *mut BSTR) -> HRESULT, pub put_Data: unsafe extern "system" fn(This: *mut ITaskDefinition, pData: BSTR) -> HRESULT, pub get_Principal: unsafe extern "system" fn(This: *mut ITaskDefinition, ppPrincipal: *mut *mut IPrincipal) -> HRESULT, pub put_Principal: unsafe extern "system" fn(This: *mut ITaskDefinition, ppPrincipal: *const IPrincipal) -> HRESULT, pub get_Actions: unsafe extern "system" fn(This: *mut ITaskDefinition, ppActions: *mut *mut IActionCollection) -> HRESULT, pub put_Actions: unsafe extern "system" fn(This: *mut ITaskDefinition, ppActions: *const IActionCollection) -> HRESULT, pub get_XmlText: unsafe extern "system" fn(This: *mut ITaskDefinition, pXml: *mut BSTR) -> HRESULT, pub put_XmlText: unsafe extern "system" fn(This: *mut ITaskDefinition, pXml: BSTR) -> HRESULT,
}

Fields§

§parent: IDispatchVtbl§get_RegistrationInfo: unsafe extern "system" fn(This: *mut ITaskDefinition, ppRegistrationInfo: *mut *mut IRegistrationInfo) -> HRESULT§put_RegistrationInfo: unsafe extern "system" fn(This: *mut ITaskDefinition, ppRegistrationInfo: *const IRegistrationInfo) -> HRESULT§get_Triggers: unsafe extern "system" fn(This: *mut ITaskDefinition, ppTriggers: *mut *mut ITriggerCollection) -> HRESULT§put_Triggers: unsafe extern "system" fn(This: *mut ITaskDefinition, ppTriggers: *const ITriggerCollection) -> HRESULT§get_Settings: unsafe extern "system" fn(This: *mut ITaskDefinition, ppSettings: *mut *mut ITaskSettings) -> HRESULT§put_Settings: unsafe extern "system" fn(This: *mut ITaskDefinition, ppSettings: *const ITaskSettings) -> HRESULT§get_Data: unsafe extern "system" fn(This: *mut ITaskDefinition, pData: *mut BSTR) -> HRESULT§put_Data: unsafe extern "system" fn(This: *mut ITaskDefinition, pData: BSTR) -> HRESULT§get_Principal: unsafe extern "system" fn(This: *mut ITaskDefinition, ppPrincipal: *mut *mut IPrincipal) -> HRESULT§put_Principal: unsafe extern "system" fn(This: *mut ITaskDefinition, ppPrincipal: *const IPrincipal) -> HRESULT§get_Actions: unsafe extern "system" fn(This: *mut ITaskDefinition, ppActions: *mut *mut IActionCollection) -> HRESULT§put_Actions: unsafe extern "system" fn(This: *mut ITaskDefinition, ppActions: *const IActionCollection) -> HRESULT§get_XmlText: unsafe extern "system" fn(This: *mut ITaskDefinition, pXml: *mut BSTR) -> HRESULT§put_XmlText: unsafe extern "system" fn(This: *mut ITaskDefinition, pXml: BSTR) -> HRESULT

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.