pub struct ClrVersion {
pub major: u16,
pub minor: u16,
pub build: u16,
pub revision: u16,
}Expand description
CLR 版本信息
Fields§
§major: u16主版本号
minor: u16次版本号
build: u16构建号
revision: u16修订号
Trait Implementations§
Source§impl Clone for ClrVersion
impl Clone for ClrVersion
Source§fn clone(&self) -> ClrVersion
fn clone(&self) -> ClrVersion
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 moreSource§impl Debug for ClrVersion
impl Debug for ClrVersion
Source§impl Default for ClrVersion
impl Default for ClrVersion
Source§impl PartialEq for ClrVersion
impl PartialEq for ClrVersion
impl Copy for ClrVersion
impl StructuralPartialEq for ClrVersion
Auto Trait Implementations§
impl Freeze for ClrVersion
impl RefUnwindSafe for ClrVersion
impl Send for ClrVersion
impl Sync for ClrVersion
impl Unpin for ClrVersion
impl UnwindSafe for ClrVersion
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