pub struct ResolutionMetrics {
pub total_manifests_resolved: u64,
pub rule_synthesis_count: u64,
pub rule_conflict_resolved_total: u64,
pub resource_resolution_failures: u64,
}Expand description
Tracks the runtime resolution telemetry for the Capability Engine. Ref: [007-LMS-OPS]
Time: O(1) | Space: O(1)
Fields§
§total_manifests_resolved: u64Total number of manifests generated.
rule_synthesis_count: u64Total number of logical rules successfully synthesized.
rule_conflict_resolved_total: u64Number of times the High-Water Mark algorithm successfully resolved a rule conflict.
resource_resolution_failures: u64Number of times Phase 2.5 (Resource Bridge) failed to map an ID to a URI.
Trait Implementations§
Source§impl Clone for ResolutionMetrics
impl Clone for ResolutionMetrics
Source§fn clone(&self) -> ResolutionMetrics
fn clone(&self) -> ResolutionMetrics
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 ResolutionMetrics
impl Debug for ResolutionMetrics
Source§impl Default for ResolutionMetrics
impl Default for ResolutionMetrics
Source§fn default() -> ResolutionMetrics
fn default() -> ResolutionMetrics
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ResolutionMetrics
impl<'de> Deserialize<'de> for ResolutionMetrics
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
Source§impl PartialEq for ResolutionMetrics
impl PartialEq for ResolutionMetrics
Source§fn eq(&self, other: &ResolutionMetrics) -> bool
fn eq(&self, other: &ResolutionMetrics) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ResolutionMetrics
impl Serialize for ResolutionMetrics
impl Eq for ResolutionMetrics
impl StructuralPartialEq for ResolutionMetrics
Auto Trait Implementations§
impl Freeze for ResolutionMetrics
impl RefUnwindSafe for ResolutionMetrics
impl Send for ResolutionMetrics
impl Sync for ResolutionMetrics
impl Unpin for ResolutionMetrics
impl UnsafeUnpin for ResolutionMetrics
impl UnwindSafe for ResolutionMetrics
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,
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.