pub enum CppStandard {
Cpp98,
Cpp11,
Cpp14,
Cpp17,
Cpp20,
Cpp23,
Latest,
}Variants§
Trait Implementations§
Source§impl Clone for CppStandard
impl Clone for CppStandard
Source§fn clone(&self) -> CppStandard
fn clone(&self) -> CppStandard
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for CppStandard
Source§impl Debug for CppStandard
impl Debug for CppStandard
impl Eq for CppStandard
Source§impl PartialEq for CppStandard
impl PartialEq for CppStandard
impl StructuralPartialEq for CppStandard
Auto Trait Implementations§
impl Freeze for CppStandard
impl RefUnwindSafe for CppStandard
impl Send for CppStandard
impl Sync for CppStandard
impl Unpin for CppStandard
impl UnsafeUnpin for CppStandard
impl UnwindSafe for CppStandard
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