pub struct EntrypointProfileResult {
pub name: String,
pub anchors: Vec<RelationAnchor>,
pub relations: Vec<GraphRelationKind>,
pub coverage: EntrypointProfileCoverage,
pub reachable: u32,
pub unreachable_candidates: u32,
}Expand description
Non-persistent profile metadata returned with entrypoint findings.
Fields§
§name: StringRequest-owned stable profile name.
anchors: Vec<RelationAnchor>Exact anchors used for traversal.
relations: Vec<GraphRelationKind>Exact relation families used for traversal.
coverage: EntrypointProfileCoverageCoverage disposition for the complete local entity scope.
reachable: u32Number of reachable local entities retained in the result.
unreachable_candidates: u32Number of evidence-backed unreachable candidates retained in the result.
Trait Implementations§
Source§impl Clone for EntrypointProfileResult
impl Clone for EntrypointProfileResult
Source§fn clone(&self) -> EntrypointProfileResult
fn clone(&self) -> EntrypointProfileResult
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 EntrypointProfileResult
impl Debug for EntrypointProfileResult
impl Eq for EntrypointProfileResult
Source§impl PartialEq for EntrypointProfileResult
impl PartialEq for EntrypointProfileResult
Source§fn eq(&self, other: &EntrypointProfileResult) -> bool
fn eq(&self, other: &EntrypointProfileResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for EntrypointProfileResult
impl Serialize for EntrypointProfileResult
impl StructuralPartialEq for EntrypointProfileResult
Auto Trait Implementations§
impl Freeze for EntrypointProfileResult
impl RefUnwindSafe for EntrypointProfileResult
impl Send for EntrypointProfileResult
impl Sync for EntrypointProfileResult
impl Unpin for EntrypointProfileResult
impl UnsafeUnpin for EntrypointProfileResult
impl UnwindSafe for EntrypointProfileResult
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.