pub struct GraphTraversalSummary {
pub returned_count: u64,
pub total_matching_edges: u64,
pub truncated: bool,
pub exact_verified: u64,
pub syntactic: u64,
pub name_only: u64,
pub ambiguous: u64,
pub unresolved: u64,
pub false_positive_risk: String,
pub completeness_risk: String,
}Fields§
§returned_count: u64§total_matching_edges: u64§truncated: bool§exact_verified: u64§syntactic: u64§name_only: u64§ambiguous: u64§unresolved: u64§false_positive_risk: String§completeness_risk: StringTrait Implementations§
Source§impl Debug for GraphTraversalSummary
impl Debug for GraphTraversalSummary
Source§impl Default for GraphTraversalSummary
impl Default for GraphTraversalSummary
Source§fn default() -> GraphTraversalSummary
fn default() -> GraphTraversalSummary
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for GraphTraversalSummary
impl RefUnwindSafe for GraphTraversalSummary
impl Send for GraphTraversalSummary
impl Sync for GraphTraversalSummary
impl Unpin for GraphTraversalSummary
impl UnsafeUnpin for GraphTraversalSummary
impl UnwindSafe for GraphTraversalSummary
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more