Struct wasapi::Windows::Win32::Devices::FunctionDiscovery::IFunctionInstance [−][src]
#[repr(transparent)]pub struct IFunctionInstance(_);
Implementations
impl IFunctionInstance[src]
impl IFunctionInstance[src]pub unsafe fn QueryService<T: Interface>(
&self,
guidservice: *const Guid
) -> Result<T>[src]
&self,
guidservice: *const Guid
) -> Result<T>
pub unsafe fn GetID(&self, ppszcomemidentity: *mut *mut u16) -> HRESULT[src]
pub unsafe fn GetProviderInstanceID(
&self,
ppszcomemproviderinstanceidentity: *mut *mut u16
) -> HRESULT[src]
&self,
ppszcomemproviderinstanceidentity: *mut *mut u16
) -> HRESULT
pub unsafe fn OpenPropertyStore(
&self,
dwstgaccess: u32,
ppipropertystore: *mut Option<IPropertyStore>
) -> HRESULT[src]
&self,
dwstgaccess: u32,
ppipropertystore: *mut Option<IPropertyStore>
) -> HRESULT
pub unsafe fn GetCategory(
&self,
ppszcomemcategory: *mut *mut u16,
ppszcomemsubcategory: *mut *mut u16
) -> HRESULT[src]
&self,
ppszcomemcategory: *mut *mut u16,
ppszcomemsubcategory: *mut *mut u16
) -> HRESULT
Trait Implementations
impl Clone for IFunctionInstance[src]
impl Clone for IFunctionInstance[src]fn clone(&self) -> IFunctionInstance[src]
fn clone(&self) -> IFunctionInstance[src]Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]Performs copy-assignment from source. Read more
impl Debug for IFunctionInstance[src]
impl Debug for IFunctionInstance[src]impl From<&'_ IFunctionInstance> for IServiceProvider[src]
impl From<&'_ IFunctionInstance> for IServiceProvider[src]fn from(value: &IFunctionInstance) -> Self[src]
fn from(value: &IFunctionInstance) -> Self[src]Performs the conversion.
impl From<IFunctionInstance> for IServiceProvider[src]
impl From<IFunctionInstance> for IServiceProvider[src]fn from(value: IFunctionInstance) -> Self[src]
fn from(value: IFunctionInstance) -> Self[src]Performs the conversion.
impl Interface for IFunctionInstance[src]
impl Interface for IFunctionInstance[src]type Vtable = IFunctionInstance_abi
const IID: Guid[src]
unsafe fn vtable(&self) -> &Self::Vtable
unsafe fn vtable(&self) -> &Self::VtableReturns the vtable for the current interface.
unsafe fn assume_vtable<T>(&self) -> &<T as Interface>::Vtable where
T: Interface,
unsafe fn assume_vtable<T>(&self) -> &<T as Interface>::Vtable where
T: Interface, Returns the vtable for an assumed interface. The name comes from Box’s assume_init method as
it assumes the vtable is implemented by the current interface’s vtable (e.g. a parent interface). Read more
unsafe fn query(&self, iid: *const Guid, interface: *mut *mut c_void) -> HRESULT
impl<'a> IntoParam<'a, IServiceProvider> for IFunctionInstance[src]
impl<'a> IntoParam<'a, IServiceProvider> for IFunctionInstance[src]fn into_param(self) -> Param<'a, IServiceProvider>[src]
impl<'a> IntoParam<'a, IServiceProvider> for &'a IFunctionInstance[src]
impl<'a> IntoParam<'a, IServiceProvider> for &'a IFunctionInstance[src]fn into_param(self) -> Param<'a, IServiceProvider>[src]
impl<'a> IntoParam<'a, IUnknown> for IFunctionInstance[src]
impl<'a> IntoParam<'a, IUnknown> for IFunctionInstance[src]fn into_param(self) -> Param<'a, IUnknown>[src]
impl<'a> IntoParam<'a, IUnknown> for &'a IFunctionInstance[src]
impl<'a> IntoParam<'a, IUnknown> for &'a IFunctionInstance[src]fn into_param(self) -> Param<'a, IUnknown>[src]
impl PartialEq<IFunctionInstance> for IFunctionInstance[src]
impl PartialEq<IFunctionInstance> for IFunctionInstance[src]fn eq(&self, other: &IFunctionInstance) -> bool[src]
fn eq(&self, other: &IFunctionInstance) -> bool[src]This method tests for self and other values to be equal, and is used
by ==. Read more
fn ne(&self, other: &IFunctionInstance) -> bool[src]
fn ne(&self, other: &IFunctionInstance) -> bool[src]This method tests for !=.
impl Eq for IFunctionInstance[src]
impl StructuralEq for IFunctionInstance[src]
impl StructuralPartialEq for IFunctionInstance[src]
Auto Trait Implementations
impl RefUnwindSafe for IFunctionInstance
impl !Send for IFunctionInstance
impl !Sync for IFunctionInstance
impl Unpin for IFunctionInstance
impl UnwindSafe for IFunctionInstance
Blanket Implementations
impl<T> Abi for T where
T: Interface,
impl<T> Abi for T where
T: Interface, pub fn set_abi(&mut self) -> *mut <T as Abi>::Abi
pub fn set_abi(&mut self) -> *mut <T as Abi>::AbiReturns a pointer for setting the object’s value via an ABI call.
pub unsafe fn from_abi(abi: <T as Abi>::Abi) -> Result<T, Error>
pub unsafe fn from_abi(abi: <T as Abi>::Abi) -> Result<T, Error>Casts the ABI representation to a Rust object by taking ownership of the bits.
fn abi(&self) -> Self::Abi
fn abi(&self) -> Self::AbiCasts the Rust object to its ABI type without copying the object.
fn drop_param(&mut Param<'_, Self>)
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<'a, T> IntoParam<'a, T> for T where
T: Abi,
impl<'a, T> IntoParam<'a, T> for T where
T: Abi, pub fn into_param(self) -> Param<'a, T>
impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more