#[non_exhaustive]pub enum VsVers {
Vs12,
Vs14,
Vs15,
Vs16,
Vs17,
}
Expand description
A version of Visual Studio
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Vs12
👎Deprecated: Visual Studio 12 is no longer supported. cc will never return this value.
Visual Studio 12 (2013)
Vs14
Visual Studio 14 (2015)
Vs15
Visual Studio 15 (2017)
Vs16
Visual Studio 16 (2019)
Vs17
Visual Studio 17 (2022)
Trait Implementations§
impl Copy for VsVers
impl Eq for VsVers
impl StructuralPartialEq for VsVers
Auto Trait Implementations§
impl Freeze for VsVers
impl RefUnwindSafe for VsVers
impl Send for VsVers
impl Sync for VsVers
impl Unpin for VsVers
impl UnwindSafe for VsVers
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