pub struct CompleteSupportProfile {
pub id: SupportProfileId,
pub kind: SupportProfileKind,
pub host: Option<SupportProfileId>,
pub dialect_evidence: Option<DialectEvidenceKind>,
pub evidence: [ProfileEvidence; 13],
pub independent_review: &'static str,
}Expand description
One accepted complete-support profile.
Fields§
§id: SupportProfileIdStable profile identity.
kind: SupportProfileKindClosed semantic profile kind.
host: Option<SupportProfileId>Exact host profile, required for framework projections.
dialect_evidence: Option<DialectEvidenceKind>Independent dialect evidence, required for dialect profiles.
evidence: [ProfileEvidence; 13]Evidence values aligned exactly with EvidenceSlot::ALL.
independent_review: &'static strStable independent review locator confirming the complete claim.
Trait Implementations§
Source§impl Clone for CompleteSupportProfile
impl Clone for CompleteSupportProfile
Source§fn clone(&self) -> CompleteSupportProfile
fn clone(&self) -> CompleteSupportProfile
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 CompleteSupportProfile
impl Debug for CompleteSupportProfile
Source§impl PartialEq for CompleteSupportProfile
impl PartialEq for CompleteSupportProfile
Source§impl Serialize for CompleteSupportProfile
impl Serialize for CompleteSupportProfile
impl Copy for CompleteSupportProfile
impl Eq for CompleteSupportProfile
impl StructuralPartialEq for CompleteSupportProfile
Auto Trait Implementations§
impl Freeze for CompleteSupportProfile
impl RefUnwindSafe for CompleteSupportProfile
impl Send for CompleteSupportProfile
impl Sync for CompleteSupportProfile
impl Unpin for CompleteSupportProfile
impl UnwindSafe for CompleteSupportProfile
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.