Struct windows::Win32::System::WinRT::Metadata::IMetaDataAssemblyImport

pub struct IMetaDataAssemblyImport(/* private fields */);

Implementations§

§

impl IMetaDataAssemblyImport

pub unsafe fn GetAssemblyProps( &self, mda: u32, ppbpublickey: *const *const c_void, pcbpublickey: *mut u32, pulhashalgid: *mut u32, szname: Option<&mut [u16]>, pchname: *mut u32, pmetadata: *mut ASSEMBLYMETADATA, pdwassemblyflags: *mut u32 ) -> Result<()>

pub unsafe fn GetAssemblyRefProps( &self, mdar: u32, ppbpublickeyortoken: *const *const c_void, pcbpublickeyortoken: *mut u32, szname: Option<&mut [u16]>, pchname: *mut u32, pmetadata: *mut ASSEMBLYMETADATA, ppbhashvalue: *const *const c_void, pcbhashvalue: *mut u32, pdwassemblyrefflags: *mut u32 ) -> Result<()>

pub unsafe fn GetFileProps( &self, mdf: u32, szname: Option<&mut [u16]>, pchname: *mut u32, ppbhashvalue: *const *const c_void, pcbhashvalue: *mut u32, pdwfileflags: *mut u32 ) -> Result<()>

pub unsafe fn GetExportedTypeProps( &self, mdct: u32, szname: Option<&mut [u16]>, pchname: *mut u32, ptkimplementation: *mut u32, ptktypedef: *mut u32, pdwexportedtypeflags: *mut u32 ) -> Result<()>

pub unsafe fn GetManifestResourceProps( &self, mdmr: u32, szname: Option<&mut [u16]>, pchname: *mut u32, ptkimplementation: *mut u32, pdwoffset: *mut u32, pdwresourceflags: *mut u32 ) -> Result<()>

pub unsafe fn EnumAssemblyRefs( &self, phenum: *mut *mut c_void, rassemblyrefs: *mut u32, cmax: u32, pctokens: *mut u32 ) -> Result<()>

pub unsafe fn EnumFiles( &self, phenum: *mut *mut c_void, rfiles: *mut u32, cmax: u32, pctokens: *mut u32 ) -> Result<()>

pub unsafe fn EnumExportedTypes( &self, phenum: *mut *mut c_void, rexportedtypes: *mut u32, cmax: u32, pctokens: *mut u32 ) -> Result<()>

pub unsafe fn EnumManifestResources( &self, phenum: *mut *mut c_void, rmanifestresources: *mut u32, cmax: u32, pctokens: *mut u32 ) -> Result<()>

pub unsafe fn GetAssemblyFromScope(&self, ptkassembly: *mut u32) -> Result<()>

pub unsafe fn FindExportedTypeByName<P0>( &self, szname: P0, mdtexportedtype: u32, ptkexportedtype: *mut u32 ) -> Result<()>
where P0: Param<PCWSTR>,

pub unsafe fn FindManifestResourceByName<P0>( &self, szname: P0, ptkmanifestresource: *mut u32 ) -> Result<()>
where P0: Param<PCWSTR>,

pub unsafe fn CloseEnum(&self, henum: *mut c_void)

pub unsafe fn FindAssembliesByName<P0, P1, P2>( &self, szappbase: P0, szprivatebin: P1, szassemblyname: P2, ppiunk: *mut Option<IUnknown>, cmax: u32, pcassemblies: *mut u32 ) -> Result<()>
where P0: Param<PCWSTR>, P1: Param<PCWSTR>, P2: Param<PCWSTR>,

Trait Implementations§

§

impl Clone for IMetaDataAssemblyImport

§

fn clone(&self) -> IMetaDataAssemblyImport

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Debug for IMetaDataAssemblyImport

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
§

impl Deref for IMetaDataAssemblyImport

§

type Target = IUnknown

The resulting type after dereferencing.
§

fn deref(&self) -> &Self::Target

Dereferences the value.
§

impl From<&IMetaDataAssemblyImport> for &IUnknown

§

fn from(value: &IMetaDataAssemblyImport) -> Self

Converts to this type from the input type.
§

impl From<IMetaDataAssemblyImport> for IUnknown

§

fn from(value: IMetaDataAssemblyImport) -> Self

Converts to this type from the input type.
§

impl Interface for IMetaDataAssemblyImport

§

const IID: GUID = _

The GUID associated with the interface.
§

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

Returns the raw COM interface pointer and releases ownership. It the caller’s responsibility to release the COM interface pointer.
§

unsafe fn from_raw(raw: *mut c_void) -> Self

Creates an Interface by taking ownership of the raw COM interface pointer. Read more
§

unsafe fn from_raw_borrowed(raw: &*mut c_void) -> Option<&Self>

Creates an Interface that is valid so long as the raw COM interface pointer is valid. Read more
§

fn cast<T>(&self) -> Result<T, Error>
where T: Interface,

Attempts to cast the current interface to another interface using QueryInterface. Read more
§

fn downgrade(&self) -> Result<Weak<Self>, Error>

Attempts to create a [Weak] reference to this object.
§

unsafe fn query(&self, iid: *const GUID, interface: *mut *mut c_void) -> HRESULT

Call QueryInterface on this interface Read more
§

impl PartialEq for IMetaDataAssemblyImport

§

fn eq(&self, other: &IMetaDataAssemblyImport) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Eq for IMetaDataAssemblyImport

§

impl StructuralPartialEq for IMetaDataAssemblyImport

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.