#[repr(C)]
pub struct IUIAnimationManager2_Vtbl {
Show 22 fields pub base__: IUnknown_Vtbl, pub CreateAnimationVectorVariable: unsafe extern "system" fn(_: *mut c_void, _: *const f64, _: u32, _: *mut *mut c_void) -> HRESULT, pub CreateAnimationVariable: unsafe extern "system" fn(_: *mut c_void, _: f64, _: *mut *mut c_void) -> HRESULT, pub ScheduleTransition: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: *mut c_void, _: f64) -> HRESULT, pub CreateStoryboard: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT, pub FinishAllStoryboards: unsafe extern "system" fn(_: *mut c_void, _: f64) -> HRESULT, pub AbandonAllStoryboards: unsafe extern "system" fn(_: *mut c_void) -> HRESULT, pub Update: unsafe extern "system" fn(_: *mut c_void, _: f64, _: *mut UI_ANIMATION_UPDATE_RESULT) -> HRESULT, pub GetVariableFromTag: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: u32, _: *mut *mut c_void) -> HRESULT, pub GetStoryboardFromTag: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: u32, _: *mut *mut c_void) -> HRESULT, pub EstimateNextEventTime: unsafe extern "system" fn(_: *mut c_void, _: *mut f64) -> HRESULT, pub GetStatus: unsafe extern "system" fn(_: *mut c_void, _: *mut UI_ANIMATION_MANAGER_STATUS) -> HRESULT, pub SetAnimationMode: unsafe extern "system" fn(_: *mut c_void, _: UI_ANIMATION_MODE) -> HRESULT, pub Pause: unsafe extern "system" fn(_: *mut c_void) -> HRESULT, pub Resume: unsafe extern "system" fn(_: *mut c_void) -> HRESULT, pub SetManagerEventHandler: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: BOOL) -> HRESULT, pub SetCancelPriorityComparison: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT, pub SetTrimPriorityComparison: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT, pub SetCompressPriorityComparison: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT, pub SetConcludePriorityComparison: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT, pub SetDefaultLongestAcceptableDelay: unsafe extern "system" fn(_: *mut c_void, _: f64) -> HRESULT, pub Shutdown: unsafe extern "system" fn(_: *mut c_void) -> HRESULT,
}

Fields§

§base__: IUnknown_Vtbl§CreateAnimationVectorVariable: unsafe extern "system" fn(_: *mut c_void, _: *const f64, _: u32, _: *mut *mut c_void) -> HRESULT§CreateAnimationVariable: unsafe extern "system" fn(_: *mut c_void, _: f64, _: *mut *mut c_void) -> HRESULT§ScheduleTransition: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: *mut c_void, _: f64) -> HRESULT§CreateStoryboard: unsafe extern "system" fn(_: *mut c_void, _: *mut *mut c_void) -> HRESULT§FinishAllStoryboards: unsafe extern "system" fn(_: *mut c_void, _: f64) -> HRESULT§AbandonAllStoryboards: unsafe extern "system" fn(_: *mut c_void) -> HRESULT§Update: unsafe extern "system" fn(_: *mut c_void, _: f64, _: *mut UI_ANIMATION_UPDATE_RESULT) -> HRESULT§GetVariableFromTag: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: u32, _: *mut *mut c_void) -> HRESULT§GetStoryboardFromTag: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: u32, _: *mut *mut c_void) -> HRESULT§EstimateNextEventTime: unsafe extern "system" fn(_: *mut c_void, _: *mut f64) -> HRESULT§GetStatus: unsafe extern "system" fn(_: *mut c_void, _: *mut UI_ANIMATION_MANAGER_STATUS) -> HRESULT§SetAnimationMode: unsafe extern "system" fn(_: *mut c_void, _: UI_ANIMATION_MODE) -> HRESULT§Pause: unsafe extern "system" fn(_: *mut c_void) -> HRESULT§Resume: unsafe extern "system" fn(_: *mut c_void) -> HRESULT§SetManagerEventHandler: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void, _: BOOL) -> HRESULT§SetCancelPriorityComparison: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT§SetTrimPriorityComparison: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT§SetCompressPriorityComparison: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT§SetConcludePriorityComparison: unsafe extern "system" fn(_: *mut c_void, _: *mut c_void) -> HRESULT§SetDefaultLongestAcceptableDelay: unsafe extern "system" fn(_: *mut c_void, _: f64) -> HRESULT§Shutdown: unsafe extern "system" fn(_: *mut c_void) -> HRESULT

Implementations§

§

impl IUIAnimationManager2_Vtbl

pub const fn new<Identity: IUnknownImpl<Impl = Impl>, Impl: IUIAnimationManager2_Impl, const OFFSET: isize>( ) -> IUIAnimationManager2_Vtbl

pub fn matches(iid: &GUID) -> bool

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

§

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

§

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.