pub struct LanguageCapabilitySupport {
pub detected: CapabilitySupportLevel,
pub parsed: CapabilitySupportLevel,
pub symbols: CapabilitySupportLevel,
pub semantic: CapabilitySupportLevel,
pub benchmarked: CapabilitySupportLevel,
}Expand description
Independent language capability axes.
Fields§
§detected: CapabilitySupportLevelThe language can be selected deterministically.
parsed: CapabilitySupportLevelSource can be parsed at the declared quality level.
symbols: CapabilitySupportLevelDefinitions and relationships can be extracted at the declared quality level.
semantic: CapabilitySupportLevelProject-wide semantic resolution has been independently validated.
benchmarked: CapabilitySupportLevelRepresentative benchmark coverage exists.
Implementations§
Source§impl LanguageCapabilitySupport
impl LanguageCapabilitySupport
Sourcepub const fn new(
detected: CapabilitySupportLevel,
parsed: CapabilitySupportLevel,
symbols: CapabilitySupportLevel,
semantic: CapabilitySupportLevel,
benchmarked: CapabilitySupportLevel,
) -> Self
pub const fn new( detected: CapabilitySupportLevel, parsed: CapabilitySupportLevel, symbols: CapabilitySupportLevel, semantic: CapabilitySupportLevel, benchmarked: CapabilitySupportLevel, ) -> Self
Build one independent capability profile.
Trait Implementations§
Source§impl Clone for LanguageCapabilitySupport
impl Clone for LanguageCapabilitySupport
Source§fn clone(&self) -> LanguageCapabilitySupport
fn clone(&self) -> LanguageCapabilitySupport
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 LanguageCapabilitySupport
impl Debug for LanguageCapabilitySupport
impl Copy for LanguageCapabilitySupport
impl Eq for LanguageCapabilitySupport
impl StructuralPartialEq for LanguageCapabilitySupport
Auto Trait Implementations§
impl Freeze for LanguageCapabilitySupport
impl RefUnwindSafe for LanguageCapabilitySupport
impl Send for LanguageCapabilitySupport
impl Sync for LanguageCapabilitySupport
impl Unpin for LanguageCapabilitySupport
impl UnwindSafe for LanguageCapabilitySupport
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.