pub struct CodebaseViewEdge {
pub id: String,
pub source_id: String,
pub target_id: String,
pub edge_kind: String,
pub confidence: f64,
pub evidence_ids: Vec<String>,
}Expand description
Graph-derived view edge.
Fields§
§id: String§source_id: String§target_id: String§edge_kind: String§confidence: f64§evidence_ids: Vec<String>Trait Implementations§
Source§impl Clone for CodebaseViewEdge
impl Clone for CodebaseViewEdge
Source§fn clone(&self) -> CodebaseViewEdge
fn clone(&self) -> CodebaseViewEdge
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 CodebaseViewEdge
impl Debug for CodebaseViewEdge
Source§impl<'de> Deserialize<'de> for CodebaseViewEdge
impl<'de> Deserialize<'de> for CodebaseViewEdge
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 CodebaseViewEdge
impl PartialEq for CodebaseViewEdge
Source§impl Serialize for CodebaseViewEdge
impl Serialize for CodebaseViewEdge
impl StructuralPartialEq for CodebaseViewEdge
Auto Trait Implementations§
impl Freeze for CodebaseViewEdge
impl RefUnwindSafe for CodebaseViewEdge
impl Send for CodebaseViewEdge
impl Sync for CodebaseViewEdge
impl Unpin for CodebaseViewEdge
impl UnsafeUnpin for CodebaseViewEdge
impl UnwindSafe for CodebaseViewEdge
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