pub struct CodeEdge {
pub source_id: String,
pub target_id: String,
pub predicate: CodeEdgePredicate,
pub weight: Option<f32>,
pub commit_id: Option<String>,
}Expand description
A code edge record for batch building.
Fields§
§source_id: String§target_id: String§predicate: CodeEdgePredicate§weight: Option<f32>§commit_id: Option<String>Trait Implementations§
Auto Trait Implementations§
impl Freeze for CodeEdge
impl RefUnwindSafe for CodeEdge
impl Send for CodeEdge
impl Sync for CodeEdge
impl Unpin for CodeEdge
impl UnsafeUnpin for CodeEdge
impl UnwindSafe for CodeEdge
Blanket Implementations§
impl<T> Allocation for T
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