pub struct IDirectInputDeviceA(/* private fields */);
Implementations§
Source§impl IDirectInputDeviceA
impl IDirectInputDeviceA
pub unsafe fn GetCapabilities( &self, param0: *mut DIDEVCAPS, ) -> Result<(), Error>
pub unsafe fn EnumObjects( &self, param0: Option<unsafe extern "system" fn(_: *mut DIDEVICEOBJECTINSTANCEA, _: *mut c_void) -> BOOL>, param1: *mut c_void, param2: u32, ) -> Result<(), Error>
pub unsafe fn GetProperty( &self, param0: *const Guid, param1: *mut DIPROPHEADER, ) -> Result<(), Error>
pub unsafe fn SetProperty( &self, param0: *const Guid, param1: *mut DIPROPHEADER, ) -> Result<(), Error>
pub unsafe fn Acquire(&self) -> Result<(), Error>
pub unsafe fn Unacquire(&self) -> Result<(), Error>
pub unsafe fn GetDeviceState( &self, param0: u32, param1: *mut c_void, ) -> Result<(), Error>
pub unsafe fn GetDeviceData( &self, param0: u32, param1: *mut DIDEVICEOBJECTDATA, param2: *mut u32, param3: u32, ) -> Result<(), Error>
pub unsafe fn SetDataFormat( &self, param0: *mut DIDATAFORMAT, ) -> Result<(), Error>
pub unsafe fn SetEventNotification<'a>( &self, param0: impl IntoParam<'a, HANDLE>, ) -> Result<(), Error>
pub unsafe fn SetCooperativeLevel<'a>( &self, param0: impl IntoParam<'a, HWND>, param1: u32, ) -> Result<(), Error>
pub unsafe fn GetObjectInfo( &self, param0: *mut DIDEVICEOBJECTINSTANCEA, param1: u32, param2: u32, ) -> Result<(), Error>
pub unsafe fn GetDeviceInfo( &self, param0: *mut DIDEVICEINSTANCEA, ) -> Result<(), Error>
pub unsafe fn RunControlPanel<'a>( &self, param0: impl IntoParam<'a, HWND>, param1: u32, ) -> Result<(), Error>
pub unsafe fn Initialize<'a>( &self, param0: impl IntoParam<'a, HINSTANCE>, param1: u32, param2: *const Guid, ) -> Result<(), Error>
Trait Implementations§
Source§impl Clone for IDirectInputDeviceA
impl Clone for IDirectInputDeviceA
Source§fn clone(&self) -> IDirectInputDeviceA
fn clone(&self) -> IDirectInputDeviceA
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 moreSource§impl Debug for IDirectInputDeviceA
impl Debug for IDirectInputDeviceA
Source§impl From<&IDirectInputDevice2A> for IDirectInputDeviceA
impl From<&IDirectInputDevice2A> for IDirectInputDeviceA
Source§fn from(value: &IDirectInputDevice2A) -> IDirectInputDeviceA
fn from(value: &IDirectInputDevice2A) -> IDirectInputDeviceA
Converts to this type from the input type.
Source§impl From<&IDirectInputDevice7A> for IDirectInputDeviceA
impl From<&IDirectInputDevice7A> for IDirectInputDeviceA
Source§fn from(value: &IDirectInputDevice7A) -> IDirectInputDeviceA
fn from(value: &IDirectInputDevice7A) -> IDirectInputDeviceA
Converts to this type from the input type.
Source§impl From<IDirectInputDevice2A> for IDirectInputDeviceA
impl From<IDirectInputDevice2A> for IDirectInputDeviceA
Source§fn from(value: IDirectInputDevice2A) -> IDirectInputDeviceA
fn from(value: IDirectInputDevice2A) -> IDirectInputDeviceA
Converts to this type from the input type.
Source§impl From<IDirectInputDevice7A> for IDirectInputDeviceA
impl From<IDirectInputDevice7A> for IDirectInputDeviceA
Source§fn from(value: IDirectInputDevice7A) -> IDirectInputDeviceA
fn from(value: IDirectInputDevice7A) -> IDirectInputDeviceA
Converts to this type from the input type.
Source§impl Interface for IDirectInputDeviceA
impl Interface for IDirectInputDeviceA
Source§impl PartialEq for IDirectInputDeviceA
impl PartialEq for IDirectInputDeviceA
impl Eq for IDirectInputDeviceA
impl StructuralPartialEq for IDirectInputDeviceA
Auto Trait Implementations§
impl Freeze for IDirectInputDeviceA
impl RefUnwindSafe for IDirectInputDeviceA
impl !Send for IDirectInputDeviceA
impl !Sync for IDirectInputDeviceA
impl Unpin for IDirectInputDeviceA
impl UnwindSafe for IDirectInputDeviceA
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