pub struct IPortableDeviceWebControl(/* private fields */);Expand description
Required features: "Win32_System_Com"
Implementations§
Source§impl IPortableDeviceWebControl
impl IPortableDeviceWebControl
Sourcepub unsafe fn GetDeviceFromId<P0>(
&self,
deviceid: P0,
) -> Result<IDispatch, Error>where
P0: IntoParam<BSTR>,
pub unsafe fn GetDeviceFromId<P0>(
&self,
deviceid: P0,
) -> Result<IDispatch, Error>where
P0: IntoParam<BSTR>,
Required features: "Win32_System_Com"
Trait Implementations§
Source§impl Clone for IPortableDeviceWebControl
impl Clone for IPortableDeviceWebControl
Source§fn clone(&self) -> IPortableDeviceWebControl
fn clone(&self) -> IPortableDeviceWebControl
Returns a duplicate 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 ComInterface for IPortableDeviceWebControl
Available on crate feature Win32_System_Com only.
impl ComInterface for IPortableDeviceWebControl
Available on crate feature
Win32_System_Com only.fn as_unknown(&self) -> &IUnknown
Source§fn cast<T>(&self) -> Result<T, Error>where
T: ComInterface,
fn cast<T>(&self) -> Result<T, Error>where
T: ComInterface,
Attempts to cast the current interface to another interface using
QueryInterface. Read moreSource§impl Debug for IPortableDeviceWebControl
impl Debug for IPortableDeviceWebControl
Source§impl Interface for IPortableDeviceWebControl
Available on crate feature Win32_System_Com only.
impl Interface for IPortableDeviceWebControl
Available on crate feature
Win32_System_Com only.type Vtable = IPortableDeviceWebControl_Vtbl
Source§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.Source§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 Eq for IPortableDeviceWebControl
impl StructuralPartialEq for IPortableDeviceWebControl
Auto Trait Implementations§
impl Freeze for IPortableDeviceWebControl
impl RefUnwindSafe for IPortableDeviceWebControl
impl !Send for IPortableDeviceWebControl
impl !Sync for IPortableDeviceWebControl
impl Unpin for IPortableDeviceWebControl
impl UnwindSafe for IPortableDeviceWebControl
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