pub struct IDirectInputEffectDriver(/* private fields */);
Implementations§
§impl IDirectInputEffectDriver
impl IDirectInputEffectDriver
pub unsafe fn DeviceID( &self, param0: u32, param1: u32, param2: u32, param3: u32, param4: *mut c_void, ) -> Result<()>
pub unsafe fn GetVersions(&self, param0: *mut DIDRIVERVERSIONS) -> Result<()>
pub unsafe fn Escape( &self, param0: u32, param1: u32, param2: *mut DIEFFESCAPE, ) -> Result<()>
pub unsafe fn SetGain(&self, param0: u32, param1: u32) -> Result<()>
pub unsafe fn SendForceFeedbackCommand( &self, param0: u32, param1: u32, ) -> Result<()>
pub unsafe fn GetForceFeedbackState( &self, param0: u32, param1: *mut DIDEVICESTATE, ) -> Result<()>
pub unsafe fn DownloadEffect( &self, param0: u32, param1: u32, param2: *mut u32, param3: *mut DIEFFECT, param4: u32, ) -> Result<()>
pub unsafe fn DestroyEffect(&self, param0: u32, param1: u32) -> Result<()>
pub unsafe fn StartEffect( &self, param0: u32, param1: u32, param2: u32, param3: u32, ) -> Result<()>
pub unsafe fn StopEffect(&self, param0: u32, param1: u32) -> Result<()>
pub unsafe fn GetEffectStatus( &self, param0: u32, param1: u32, param2: *mut u32, ) -> Result<()>
Trait Implementations§
§impl CanInto<IUnknown> for IDirectInputEffectDriver
impl CanInto<IUnknown> for IDirectInputEffectDriver
§impl Clone for IDirectInputEffectDriver
impl Clone for IDirectInputEffectDriver
§fn clone(&self) -> IDirectInputEffectDriver
fn clone(&self) -> IDirectInputEffectDriver
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 IDirectInputEffectDriver
impl Debug for IDirectInputEffectDriver
§impl Deref for IDirectInputEffectDriver
impl Deref for IDirectInputEffectDriver
§impl From<&IDirectInputEffectDriver> for &IUnknown
impl From<&IDirectInputEffectDriver> for &IUnknown
§fn from(value: &IDirectInputEffectDriver) -> Self
fn from(value: &IDirectInputEffectDriver) -> Self
Converts to this type from the input type.
§impl From<IDirectInputEffectDriver> for IUnknown
impl From<IDirectInputEffectDriver> for IUnknown
§fn from(value: IDirectInputEffectDriver) -> Self
fn from(value: IDirectInputEffectDriver) -> Self
Converts to this type from the input type.
§impl Interface for IDirectInputEffectDriver
impl Interface for IDirectInputEffectDriver
§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 IDirectInputEffectDriver
impl PartialEq for IDirectInputEffectDriver
§fn eq(&self, other: &IDirectInputEffectDriver) -> bool
fn eq(&self, other: &IDirectInputEffectDriver) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Eq for IDirectInputEffectDriver
impl StructuralPartialEq for IDirectInputEffectDriver
Auto Trait Implementations§
impl Freeze for IDirectInputEffectDriver
impl RefUnwindSafe for IDirectInputEffectDriver
impl !Send for IDirectInputEffectDriver
impl !Sync for IDirectInputEffectDriver
impl Unpin for IDirectInputEffectDriver
impl UnwindSafe for IDirectInputEffectDriver
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
)