#[repr(C)]pub struct ModuleBindInfo {
pub dwAppDomainId: u32,
pub lpAssemblyIdentity: PCWSTR,
pub lpModuleName: PCWSTR,
}Expand description
Struct containing metadata needed for binding a module in the CLR.
Fields§
§dwAppDomainId: u32Identifier of the application domain making the request.
lpAssemblyIdentity: PCWSTRThe identity of the containing assembly.
lpModuleName: PCWSTRThe name of the module being requested.
Trait Implementations§
Source§impl Clone for ModuleBindInfo
impl Clone for ModuleBindInfo
Source§fn clone(&self) -> ModuleBindInfo
fn clone(&self) -> ModuleBindInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ModuleBindInfo
Source§impl Debug for ModuleBindInfo
impl Debug for ModuleBindInfo
Source§impl Default for ModuleBindInfo
impl Default for ModuleBindInfo
Source§fn default() -> ModuleBindInfo
fn default() -> ModuleBindInfo
Returns the “default value” for a type. Read more
Source§impl PartialEq for ModuleBindInfo
impl PartialEq for ModuleBindInfo
Source§fn eq(&self, other: &ModuleBindInfo) -> bool
fn eq(&self, other: &ModuleBindInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ModuleBindInfo
Auto Trait Implementations§
impl !Send for ModuleBindInfo
impl !Sync for ModuleBindInfo
impl Freeze for ModuleBindInfo
impl RefUnwindSafe for ModuleBindInfo
impl Unpin for ModuleBindInfo
impl UnsafeUnpin for ModuleBindInfo
impl UnwindSafe for ModuleBindInfo
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