pub struct ClrExternalAssembly {
pub name: String,
pub version: ClrVersion,
pub public_key_token: Option<Vec<u8>>,
pub culture: Option<String>,
pub hash_algorithm: Option<u32>,
}Expand description
外部程序集引用
Fields§
§name: String程序集名称
version: ClrVersion版本信息
public_key_token: Option<Vec<u8>>公钥标记
culture: Option<String>文化信息
hash_algorithm: Option<u32>哈希算法
Trait Implementations§
Source§impl Clone for ClrExternalAssembly
impl Clone for ClrExternalAssembly
Source§fn clone(&self) -> ClrExternalAssembly
fn clone(&self) -> ClrExternalAssembly
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 moreAuto Trait Implementations§
impl Freeze for ClrExternalAssembly
impl RefUnwindSafe for ClrExternalAssembly
impl Send for ClrExternalAssembly
impl Sync for ClrExternalAssembly
impl Unpin for ClrExternalAssembly
impl UnwindSafe for ClrExternalAssembly
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