Struct IUIAnimationStoryboard2
pub struct IUIAnimationStoryboard2(/* private fields */);
Implementations§
§impl IUIAnimationStoryboard2
impl IUIAnimationStoryboard2
pub unsafe fn AddTransition<P0, P1>(
&self,
variable: P0,
transition: P1,
) -> Result<()>where
P0: Param<IUIAnimationVariable2>,
P1: Param<IUIAnimationTransition2>,
pub unsafe fn AddKeyframeAtOffset( &self, existingkeyframe: UI_ANIMATION_KEYFRAME, offset: f64, ) -> Result<UI_ANIMATION_KEYFRAME>
pub unsafe fn AddKeyframeAfterTransition<P0>(
&self,
transition: P0,
) -> Result<UI_ANIMATION_KEYFRAME>where
P0: Param<IUIAnimationTransition2>,
pub unsafe fn AddTransitionAtKeyframe<P0, P1>(
&self,
variable: P0,
transition: P1,
startkeyframe: UI_ANIMATION_KEYFRAME,
) -> Result<()>where
P0: Param<IUIAnimationVariable2>,
P1: Param<IUIAnimationTransition2>,
pub unsafe fn AddTransitionBetweenKeyframes<P0, P1>(
&self,
variable: P0,
transition: P1,
startkeyframe: UI_ANIMATION_KEYFRAME,
endkeyframe: UI_ANIMATION_KEYFRAME,
) -> Result<()>where
P0: Param<IUIAnimationVariable2>,
P1: Param<IUIAnimationTransition2>,
pub unsafe fn RepeatBetweenKeyframes<P4>(
&self,
startkeyframe: UI_ANIMATION_KEYFRAME,
endkeyframe: UI_ANIMATION_KEYFRAME,
crepetition: f64,
repeatmode: UI_ANIMATION_REPEAT_MODE,
piterationchangehandler: P4,
id: usize,
fregisterfornextanimationevent: bool,
) -> Result<()>where
P4: Param<IUIAnimationLoopIterationChangeHandler2>,
pub unsafe fn HoldVariable<P0>(&self, variable: P0) -> Result<()>where
P0: Param<IUIAnimationVariable2>,
pub unsafe fn SetLongestAcceptableDelay(&self, delay: f64) -> Result<()>
pub unsafe fn SetSkipDuration(&self, secondsduration: f64) -> Result<()>
pub unsafe fn Schedule( &self, timenow: f64, schedulingresult: Option<*mut UI_ANIMATION_SCHEDULING_RESULT>, ) -> Result<()>
pub unsafe fn Conclude(&self) -> Result<()>
pub unsafe fn Finish(&self, completiondeadline: f64) -> Result<()>
pub unsafe fn Abandon(&self) -> Result<()>
pub unsafe fn SetTag<P0>(&self, object: P0, id: u32) -> Result<()>where
P0: Param<IUnknown>,
pub unsafe fn GetTag( &self, object: Option<*mut Option<IUnknown>>, id: Option<*mut u32>, ) -> Result<()>
pub unsafe fn GetStatus(&self) -> Result<UI_ANIMATION_STORYBOARD_STATUS>
pub unsafe fn GetElapsedTime(&self) -> Result<f64>
pub unsafe fn SetStoryboardEventHandler<P0>(
&self,
handler: P0,
fregisterstatuschangefornextanimationevent: bool,
fregisterupdatefornextanimationevent: bool,
) -> Result<()>where
P0: Param<IUIAnimationStoryboardEventHandler2>,
Trait Implementations§
§impl CanInto<IUnknown> for IUIAnimationStoryboard2
impl CanInto<IUnknown> for IUIAnimationStoryboard2
§impl Clone for IUIAnimationStoryboard2
impl Clone for IUIAnimationStoryboard2
§fn clone(&self) -> IUIAnimationStoryboard2
fn clone(&self) -> IUIAnimationStoryboard2
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more§impl Debug for IUIAnimationStoryboard2
impl Debug for IUIAnimationStoryboard2
§impl From<&IUIAnimationStoryboard2> for &IUnknown
impl From<&IUIAnimationStoryboard2> for &IUnknown
§fn from(value: &IUIAnimationStoryboard2) -> Self
fn from(value: &IUIAnimationStoryboard2) -> Self
Converts to this type from the input type.
§impl From<IUIAnimationStoryboard2> for IUnknown
impl From<IUIAnimationStoryboard2> for IUnknown
§fn from(value: IUIAnimationStoryboard2) -> Self
fn from(value: IUIAnimationStoryboard2) -> Self
Converts to this type from the input type.
§impl Interface for IUIAnimationStoryboard2
impl Interface for IUIAnimationStoryboard2
§fn as_raw(&self) -> *mut c_void
fn as_raw(&self) -> *mut c_void
Returns the raw COM interface pointer. The resulting pointer continues to be owned by the
Interface
implementation.§fn into_raw(self) -> *mut c_void
fn into_raw(self) -> *mut c_void
Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
§unsafe fn from_raw_borrowed(raw: &*mut c_void) -> Option<&Self>
unsafe fn from_raw_borrowed(raw: &*mut c_void) -> Option<&Self>
§fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
fn cast<T>(&self) -> Result<T, Error>where
T: Interface,
Attempts to cast the current interface to another interface using
QueryInterface
. Read more§fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_to_any<T>(&self) -> Result<&(dyn Any + 'static), Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. Read more§fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn is_object<T>(&self) -> boolwhere
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
§fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object_ref<T>(&self) -> Result<&<T as ComObjectInner>::Outer, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. &MyApp_Impl
, not the inner &MyApp
object. Read more§fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
fn cast_object<T>(&self) -> Result<ComObject<T>, Error>where
T: ComObjectInner,
<T as ComObjectInner>::Outer: Any + 'static + IUnknownImpl<Impl = T>,
This casts the given COM interface to [
&dyn Any
]. It returns a reference to the “outer”
object, e.g. MyApp_Impl
, not the inner MyApp
object. Read more§fn downgrade(&self) -> Result<Weak<Self>, Error>
fn downgrade(&self) -> Result<Weak<Self>, Error>
Attempts to create a [
Weak
] reference to this object.§impl PartialEq for IUIAnimationStoryboard2
impl PartialEq for IUIAnimationStoryboard2
impl Eq for IUIAnimationStoryboard2
impl StructuralPartialEq for IUIAnimationStoryboard2
Auto Trait Implementations§
impl Freeze for IUIAnimationStoryboard2
impl RefUnwindSafe for IUIAnimationStoryboard2
impl !Send for IUIAnimationStoryboard2
impl !Sync for IUIAnimationStoryboard2
impl Unpin for IUIAnimationStoryboard2
impl UnwindSafe for IUIAnimationStoryboard2
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more