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
Legacy .NET assembly information for backward compatibility.
Fields§
§name: StringThe assembly name.
version: StringThe version number in format major.minor.build.revision.
culture: Option<String>The culture information, such as “en-US”; null indicates neutral culture.
public_key_token: Option<String>The public key token for strong name verification.
runtime_version: Option<String>The .NET runtime version, such as “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 UnsafeUnpin 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