Struct makepad_widgets::shader::std::windows::Devices::Enumeration::DeviceWatcher
#[repr(transparent)]pub struct DeviceWatcher(/* private fields */);Implementations§
§impl DeviceWatcher
impl DeviceWatcher
pub fn Added<P0>(&self, handler: P0) -> Result<EventRegistrationToken, Error>where
P0: IntoParam<TypedEventHandler<DeviceWatcher, DeviceInformation>, <TypedEventHandler<DeviceWatcher, DeviceInformation> as TypeKind>::TypeKind>,
pub fn Added<P0>(&self, handler: P0) -> Result<EventRegistrationToken, Error>where P0: IntoParam<TypedEventHandler<DeviceWatcher, DeviceInformation>, <TypedEventHandler<DeviceWatcher, DeviceInformation> as TypeKind>::TypeKind>,
Required features: "Foundation"
pub fn RemoveAdded(&self, token: EventRegistrationToken) -> Result<(), Error>
pub fn RemoveAdded(&self, token: EventRegistrationToken) -> Result<(), Error>
Required features: "Foundation"
pub fn Updated<P0>(&self, handler: P0) -> Result<EventRegistrationToken, Error>where
P0: IntoParam<TypedEventHandler<DeviceWatcher, DeviceInformationUpdate>, <TypedEventHandler<DeviceWatcher, DeviceInformationUpdate> as TypeKind>::TypeKind>,
pub fn Updated<P0>(&self, handler: P0) -> Result<EventRegistrationToken, Error>where P0: IntoParam<TypedEventHandler<DeviceWatcher, DeviceInformationUpdate>, <TypedEventHandler<DeviceWatcher, DeviceInformationUpdate> as TypeKind>::TypeKind>,
Required features: "Foundation"
pub fn RemoveUpdated(&self, token: EventRegistrationToken) -> Result<(), Error>
pub fn RemoveUpdated(&self, token: EventRegistrationToken) -> Result<(), Error>
Required features: "Foundation"
pub fn Removed<P0>(&self, handler: P0) -> Result<EventRegistrationToken, Error>where
P0: IntoParam<TypedEventHandler<DeviceWatcher, DeviceInformationUpdate>, <TypedEventHandler<DeviceWatcher, DeviceInformationUpdate> as TypeKind>::TypeKind>,
pub fn Removed<P0>(&self, handler: P0) -> Result<EventRegistrationToken, Error>where P0: IntoParam<TypedEventHandler<DeviceWatcher, DeviceInformationUpdate>, <TypedEventHandler<DeviceWatcher, DeviceInformationUpdate> as TypeKind>::TypeKind>,
Required features: "Foundation"
pub fn RemoveRemoved(&self, token: EventRegistrationToken) -> Result<(), Error>
pub fn RemoveRemoved(&self, token: EventRegistrationToken) -> Result<(), Error>
Required features: "Foundation"
pub fn EnumerationCompleted<P0>(
&self,
handler: P0
) -> Result<EventRegistrationToken, Error>where
P0: IntoParam<TypedEventHandler<DeviceWatcher, IInspectable>, <TypedEventHandler<DeviceWatcher, IInspectable> as TypeKind>::TypeKind>,
pub fn EnumerationCompleted<P0>( &self, handler: P0 ) -> Result<EventRegistrationToken, Error>where P0: IntoParam<TypedEventHandler<DeviceWatcher, IInspectable>, <TypedEventHandler<DeviceWatcher, IInspectable> as TypeKind>::TypeKind>,
Required features: "Foundation"
pub fn RemoveEnumerationCompleted(
&self,
token: EventRegistrationToken
) -> Result<(), Error>
pub fn RemoveEnumerationCompleted( &self, token: EventRegistrationToken ) -> Result<(), Error>
Required features: "Foundation"
pub fn Stopped<P0>(&self, handler: P0) -> Result<EventRegistrationToken, Error>where
P0: IntoParam<TypedEventHandler<DeviceWatcher, IInspectable>, <TypedEventHandler<DeviceWatcher, IInspectable> as TypeKind>::TypeKind>,
pub fn Stopped<P0>(&self, handler: P0) -> Result<EventRegistrationToken, Error>where P0: IntoParam<TypedEventHandler<DeviceWatcher, IInspectable>, <TypedEventHandler<DeviceWatcher, IInspectable> as TypeKind>::TypeKind>,
Required features: "Foundation"
pub fn RemoveStopped(&self, token: EventRegistrationToken) -> Result<(), Error>
pub fn RemoveStopped(&self, token: EventRegistrationToken) -> Result<(), Error>
Required features: "Foundation"
pub fn Status(&self) -> Result<DeviceWatcherStatus, Error>
pub fn Start(&self) -> Result<(), Error>
pub fn Stop(&self) -> Result<(), Error>
Trait Implementations§
§impl Clone for DeviceWatcher
impl Clone for DeviceWatcher
§fn clone(&self) -> DeviceWatcher
fn clone(&self) -> DeviceWatcher
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 ComInterface for DeviceWatcher
impl ComInterface for DeviceWatcher
§const IID: GUID = <IDeviceWatcher as ::windows_core::ComInterface>::IID
const IID: GUID = <IDeviceWatcher as ::windows_core::ComInterface>::IID
A unique identifier representing this interface.
fn as_unknown(&self) -> &IUnknown
§impl Debug for DeviceWatcher
impl Debug for DeviceWatcher
§impl Interface for DeviceWatcher
impl Interface for DeviceWatcher
type Vtable = IDeviceWatcher_Vtbl
§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.
§impl PartialEq<DeviceWatcher> for DeviceWatcher
impl PartialEq<DeviceWatcher> for DeviceWatcher
§fn eq(&self, other: &DeviceWatcher) -> bool
fn eq(&self, other: &DeviceWatcher) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for DeviceWatcher
impl Send for DeviceWatcher
impl Sync for DeviceWatcher
Auto Trait Implementations§
impl RefUnwindSafe for DeviceWatcher
impl Unpin for DeviceWatcher
impl UnwindSafe for DeviceWatcher
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