pub struct ResolvedLanguageStandards {
pub c: Option<ResolvedStandard<CStandard>>,
pub cxx: Option<ResolvedStandard<CxxStandard>>,
}Expand description
Package-level effective implementation standards. None means
no declaration anywhere - there is no built-in default, and a
target that compiles the language without an effective standard
is rejected at manifest load.
Fields§
§c: Option<ResolvedStandard<CStandard>>§cxx: Option<ResolvedStandard<CxxStandard>>Trait Implementations§
Source§impl Clone for ResolvedLanguageStandards
impl Clone for ResolvedLanguageStandards
Source§fn clone(&self) -> ResolvedLanguageStandards
fn clone(&self) -> ResolvedLanguageStandards
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 ResolvedLanguageStandards
Source§impl Debug for ResolvedLanguageStandards
impl Debug for ResolvedLanguageStandards
Source§impl Default for ResolvedLanguageStandards
impl Default for ResolvedLanguageStandards
Source§fn default() -> ResolvedLanguageStandards
fn default() -> ResolvedLanguageStandards
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ResolvedLanguageStandards
impl<'de> Deserialize<'de> for ResolvedLanguageStandards
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for ResolvedLanguageStandards
Source§impl PartialEq for ResolvedLanguageStandards
impl PartialEq for ResolvedLanguageStandards
Source§fn eq(&self, other: &ResolvedLanguageStandards) -> bool
fn eq(&self, other: &ResolvedLanguageStandards) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ResolvedLanguageStandards
Auto Trait Implementations§
impl Freeze for ResolvedLanguageStandards
impl RefUnwindSafe for ResolvedLanguageStandards
impl Send for ResolvedLanguageStandards
impl Sync for ResolvedLanguageStandards
impl Unpin for ResolvedLanguageStandards
impl UnsafeUnpin for ResolvedLanguageStandards
impl UnwindSafe for ResolvedLanguageStandards
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.