pub struct DotNetAssemblyInfo {
pub name: String,
pub version: String,
pub culture: Option<String>,
pub public_key_token: Option<String>,
pub runtime_version: Option<String>,
}Expand description
旧版本的 .NET 程序集信息,用于向后兼容
Fields§
§name: String程序集名称
version: String版本号,格式为 major.minor.build.revision
culture: Option<String>文化区域信息,如 “zh-CN”,null 表示中性文化
public_key_token: Option<String>公钥标记,用于强名称验证
runtime_version: Option<String>.NET 运行时版本,如 “v4.0.30319”
Trait Implementations§
Source§impl Clone for DotNetAssemblyInfo
impl Clone for DotNetAssemblyInfo
Source§fn clone(&self) -> DotNetAssemblyInfo
fn clone(&self) -> DotNetAssemblyInfo
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 DotNetAssemblyInfo
impl RefUnwindSafe for DotNetAssemblyInfo
impl Send for DotNetAssemblyInfo
impl Sync for DotNetAssemblyInfo
impl Unpin for DotNetAssemblyInfo
impl UnwindSafe for DotNetAssemblyInfo
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