Struct windows::Win32::UI::Input::Touch::IInertiaProcessor

pub struct IInertiaProcessor(/* private fields */);

Implementations§

§

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 Clone for IInertiaProcessor

§

fn clone(&self) -> IInertiaProcessor

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Debug for IInertiaProcessor

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
§

impl Deref for IInertiaProcessor

§

type Target = IUnknown

The resulting type after dereferencing.
§

fn deref(&self) -> &Self::Target

Dereferences the value.
§

impl From<&IInertiaProcessor> for &IUnknown

§

fn from(value: &IInertiaProcessor) -> Self

Converts to this type from the input type.
§

impl From<IInertiaProcessor> for IUnknown

§

fn from(value: IInertiaProcessor) -> Self

Converts to this type from the input type.
§

impl Interface for IInertiaProcessor

§

const IID: GUID = _

The GUID associated with the interface.
§

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

Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
§

unsafe fn from_raw(raw: *mut c_void) -> Self

Creates an Interface by taking ownership of the raw COM interface pointer. Read more
§

unsafe fn from_raw_borrowed(raw: &*mut c_void) -> Option<&Self>

Creates an Interface that is valid so long as the raw COM interface pointer is valid. Read more
§

fn cast<T>(&self) -> Result<T, Error>
where T: Interface,

Attempts to cast the current interface to another interface using QueryInterface. Read more
§

fn downgrade(&self) -> Result<Weak<Self>, Error>

Attempts to create a [Weak] reference to this object.
§

unsafe fn query(&self, iid: *const GUID, interface: *mut *mut c_void) -> HRESULT

Call QueryInterface on this interface Read more
§

impl PartialEq for IInertiaProcessor

§

fn eq(&self, other: &IInertiaProcessor) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Eq for IInertiaProcessor

§

impl StructuralPartialEq for IInertiaProcessor

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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.