pub struct IInertiaProcessor(/* private fields */);
Implementations§
§impl IInertiaProcessor
impl IInertiaProcessor
pub unsafe fn InitialOriginX(&self) -> Result<f32>
pub unsafe fn SetInitialOriginX(&self, x: f32) -> Result<()>
pub unsafe fn InitialOriginY(&self) -> Result<f32>
pub unsafe fn SetInitialOriginY(&self, y: f32) -> Result<()>
pub unsafe fn InitialVelocityX(&self) -> Result<f32>
pub unsafe fn SetInitialVelocityX(&self, x: f32) -> Result<()>
pub unsafe fn InitialVelocityY(&self) -> Result<f32>
pub unsafe fn SetInitialVelocityY(&self, y: f32) -> Result<()>
pub unsafe fn InitialAngularVelocity(&self) -> Result<f32>
pub unsafe fn SetInitialAngularVelocity(&self, velocity: f32) -> Result<()>
pub unsafe fn InitialExpansionVelocity(&self) -> Result<f32>
pub unsafe fn SetInitialExpansionVelocity(&self, velocity: f32) -> Result<()>
pub unsafe fn InitialRadius(&self) -> Result<f32>
pub unsafe fn SetInitialRadius(&self, radius: f32) -> Result<()>
pub unsafe fn BoundaryLeft(&self) -> Result<f32>
pub unsafe fn SetBoundaryLeft(&self, left: f32) -> Result<()>
pub unsafe fn BoundaryTop(&self) -> Result<f32>
pub unsafe fn SetBoundaryTop(&self, top: f32) -> Result<()>
pub unsafe fn BoundaryRight(&self) -> Result<f32>
pub unsafe fn SetBoundaryRight(&self, right: f32) -> Result<()>
pub unsafe fn BoundaryBottom(&self) -> Result<f32>
pub unsafe fn SetBoundaryBottom(&self, bottom: f32) -> Result<()>
pub unsafe fn ElasticMarginLeft(&self) -> Result<f32>
pub unsafe fn SetElasticMarginLeft(&self, left: f32) -> Result<()>
pub unsafe fn ElasticMarginTop(&self) -> Result<f32>
pub unsafe fn SetElasticMarginTop(&self, top: f32) -> Result<()>
pub unsafe fn ElasticMarginRight(&self) -> Result<f32>
pub unsafe fn SetElasticMarginRight(&self, right: f32) -> Result<()>
pub unsafe fn ElasticMarginBottom(&self) -> Result<f32>
pub unsafe fn SetElasticMarginBottom(&self, bottom: f32) -> Result<()>
pub unsafe fn DesiredDisplacement(&self) -> Result<f32>
pub unsafe fn SetDesiredDisplacement(&self, displacement: f32) -> Result<()>
pub unsafe fn DesiredRotation(&self) -> Result<f32>
pub unsafe fn SetDesiredRotation(&self, rotation: f32) -> Result<()>
pub unsafe fn DesiredExpansion(&self) -> Result<f32>
pub unsafe fn SetDesiredExpansion(&self, expansion: f32) -> Result<()>
pub unsafe fn DesiredDeceleration(&self) -> Result<f32>
pub unsafe fn SetDesiredDeceleration(&self, deceleration: f32) -> Result<()>
pub unsafe fn DesiredAngularDeceleration(&self) -> Result<f32>
pub unsafe fn SetDesiredAngularDeceleration( &self, deceleration: f32, ) -> Result<()>
pub unsafe fn DesiredExpansionDeceleration(&self) -> Result<f32>
pub unsafe fn SetDesiredExpansionDeceleration( &self, deceleration: f32, ) -> Result<()>
pub unsafe fn InitialTimestamp(&self) -> Result<u32>
pub unsafe fn SetInitialTimestamp(&self, timestamp: u32) -> Result<()>
pub unsafe fn Reset(&self) -> Result<()>
pub unsafe fn Process(&self) -> Result<BOOL>
pub unsafe fn ProcessTime(&self, timestamp: u32) -> Result<BOOL>
pub unsafe fn Complete(&self) -> Result<()>
pub unsafe fn CompleteTime(&self, timestamp: u32) -> Result<()>
Trait Implementations§
§impl CanInto<IUnknown> for IInertiaProcessor
impl CanInto<IUnknown> for IInertiaProcessor
§impl Clone for IInertiaProcessor
impl Clone for IInertiaProcessor
§fn clone(&self) -> IInertiaProcessor
fn clone(&self) -> IInertiaProcessor
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 IInertiaProcessor
impl Debug for IInertiaProcessor
§impl Deref for IInertiaProcessor
impl Deref for IInertiaProcessor
§impl From<&IInertiaProcessor> for &IUnknown
impl From<&IInertiaProcessor> for &IUnknown
§fn from(value: &IInertiaProcessor) -> Self
fn from(value: &IInertiaProcessor) -> Self
Converts to this type from the input type.
§impl From<IInertiaProcessor> for IUnknown
impl From<IInertiaProcessor> for IUnknown
§fn from(value: IInertiaProcessor) -> Self
fn from(value: IInertiaProcessor) -> Self
Converts to this type from the input type.
§impl Interface for IInertiaProcessor
impl Interface for IInertiaProcessor
§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.
§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 IInertiaProcessor
impl PartialEq for IInertiaProcessor
§fn eq(&self, other: &IInertiaProcessor) -> bool
fn eq(&self, other: &IInertiaProcessor) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for IInertiaProcessor
impl StructuralPartialEq for IInertiaProcessor
Auto Trait Implementations§
impl Freeze for IInertiaProcessor
impl RefUnwindSafe for IInertiaProcessor
impl !Send for IInertiaProcessor
impl !Sync for IInertiaProcessor
impl Unpin for IInertiaProcessor
impl UnwindSafe for IInertiaProcessor
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)