pub struct TaskEdge {
pub from_id: u64,
pub to_id: u64,
pub edge_type: EdgeType,
}Expand description
A directed edge from one TaskNode to another.
Fields§
§from_id: u64Source node ID.
to_id: u64Destination node ID.
edge_type: EdgeTypeRelationship type.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TaskEdge
impl RefUnwindSafe for TaskEdge
impl Send for TaskEdge
impl Sync for TaskEdge
impl Unpin for TaskEdge
impl UnsafeUnpin for TaskEdge
impl UnwindSafe for TaskEdge
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