pub struct GraphHop {Show 14 fields
pub edge_id: i64,
pub from_symbol: Option<String>,
pub to_symbol: Option<String>,
pub edge_kind: String,
pub confidence: String,
pub edge_confidence: String,
pub target: Option<String>,
pub target_qualified_name: Option<String>,
pub evidence: Option<String>,
pub receiver_hint: Option<String>,
pub resolution: String,
pub verified_target_symbol: bool,
pub shown_by_default: bool,
pub callsite: Option<Callsite>,
}Fields§
§edge_id: i64§from_symbol: Option<String>§to_symbol: Option<String>§edge_kind: String§confidence: String§edge_confidence: String§target: Option<String>§target_qualified_name: Option<String>§evidence: Option<String>§receiver_hint: Option<String>§resolution: String§verified_target_symbol: bool§shown_by_default: bool§callsite: Option<Callsite>Trait Implementations§
Auto Trait Implementations§
impl Freeze for GraphHop
impl RefUnwindSafe for GraphHop
impl Send for GraphHop
impl Sync for GraphHop
impl Unpin for GraphHop
impl UnsafeUnpin for GraphHop
impl UnwindSafe for GraphHop
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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