pub struct ProfileResult {
pub eligibility: Eligibility,
pub type_results: Vec<TypeEligibility>,
pub diagnostics: Vec<ValidationDiagnostic>,
}Expand description
Overall result of evaluating a graph against a profile.
Contains the aggregate eligibility, per-type breakdowns, and any profile-specific diagnostics.
Fields§
§eligibility: EligibilityOverall eligibility across all evaluated nodes.
type_results: Vec<TypeEligibility>Per-type eligibility breakdown.
diagnostics: Vec<ValidationDiagnostic>Profile-specific diagnostics (on top of vocabulary diagnostics).
Trait Implementations§
Source§impl Clone for ProfileResult
impl Clone for ProfileResult
Source§fn clone(&self) -> ProfileResult
fn clone(&self) -> ProfileResult
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 moreSource§impl Debug for ProfileResult
impl Debug for ProfileResult
Source§impl<'de> Deserialize<'de> for ProfileResult
impl<'de> Deserialize<'de> for ProfileResult
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
Auto Trait Implementations§
impl Freeze for ProfileResult
impl RefUnwindSafe for ProfileResult
impl Send for ProfileResult
impl Sync for ProfileResult
impl Unpin for ProfileResult
impl UnsafeUnpin for ProfileResult
impl UnwindSafe for ProfileResult
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