pub struct Standards<'a> {
pub gnu: Option<&'a str>,
pub clang: Option<&'a str>,
pub msvc: Option<&'a str>,
pub clang_cl: Option<&'a str>,
}Expand description
Collection of C standard identifiers for different kinds of compilers.
Fields§
§gnu: Option<&'a str>§clang: Option<&'a str>§msvc: Option<&'a str>§clang_cl: Option<&'a str>Trait Implementations§
Source§impl<'a> Ord for Standards<'a>
impl<'a> Ord for Standards<'a>
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl<'a> PartialOrd for Standards<'a>
impl<'a> PartialOrd for Standards<'a>
impl<'a> Copy for Standards<'a>
impl<'a> Eq for Standards<'a>
impl<'a> StructuralPartialEq for Standards<'a>
Auto Trait Implementations§
impl<'a> Freeze for Standards<'a>
impl<'a> RefUnwindSafe for Standards<'a>
impl<'a> Send for Standards<'a>
impl<'a> Sync for Standards<'a>
impl<'a> Unpin for Standards<'a>
impl<'a> UnwindSafe for Standards<'a>
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