pub struct AssemblyLoadEvent {
pub fields: BuildEventArgsFields,
pub context: i32,
pub loading_initiator: Option<String>,
pub assembly_name: Option<String>,
pub assembly_path: Option<String>,
pub mvid: [u8; 16],
pub app_domain_name: Option<String>,
}Expand description
AssemblyLoad event — an assembly was loaded during the build.
Fields§
§fields: BuildEventArgsFields§context: i32AssemblyLoadingContext (raw i32).
loading_initiator: Option<String>§assembly_name: Option<String>§assembly_path: Option<String>§mvid: [u8; 16]Module version identifier (GUID, 16 bytes).
app_domain_name: Option<String>Trait Implementations§
Source§impl Clone for AssemblyLoadEvent
impl Clone for AssemblyLoadEvent
Source§fn clone(&self) -> AssemblyLoadEvent
fn clone(&self) -> AssemblyLoadEvent
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 moreSource§impl Debug for AssemblyLoadEvent
impl Debug for AssemblyLoadEvent
Source§impl Default for AssemblyLoadEvent
impl Default for AssemblyLoadEvent
Source§fn default() -> AssemblyLoadEvent
fn default() -> AssemblyLoadEvent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AssemblyLoadEvent
impl<'de> Deserialize<'de> for AssemblyLoadEvent
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AssemblyLoadEvent
impl RefUnwindSafe for AssemblyLoadEvent
impl Send for AssemblyLoadEvent
impl Sync for AssemblyLoadEvent
impl Unpin for AssemblyLoadEvent
impl UnsafeUnpin for AssemblyLoadEvent
impl UnwindSafe for AssemblyLoadEvent
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