pub enum RuntimeVersion {
V2,
V3,
V4,
UNKNOWN,
}Expand description
Represents the .NET runtime versions supported by RustClr.
Variants§
V2
.NET Framework 2.0.
V3
.NET Framework 3.0.
V4
.NET Framework 4.0.
UNKNOWN
Represents an unsupported .NET runtime version.
Implementations§
Trait Implementations§
Source§impl Clone for RuntimeVersion
impl Clone for RuntimeVersion
Source§fn clone(&self) -> RuntimeVersion
fn clone(&self) -> RuntimeVersion
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 RuntimeVersion
impl Debug for RuntimeVersion
impl Copy for RuntimeVersion
Auto Trait Implementations§
impl Freeze for RuntimeVersion
impl RefUnwindSafe for RuntimeVersion
impl Send for RuntimeVersion
impl Sync for RuntimeVersion
impl Unpin for RuntimeVersion
impl UnwindSafe for RuntimeVersion
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