pub struct Thread {
pub node_ids: Vec<String>,
pub edge_ids: Vec<usize>,
}Expand description
The highlight set for a node’s thread (Spec 001 §3.3): node ids plus edge
indices into Graph::edges.
Fields§
§node_ids: Vec<String>§edge_ids: Vec<usize>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Thread
impl RefUnwindSafe for Thread
impl Send for Thread
impl Sync for Thread
impl Unpin for Thread
impl UnsafeUnpin for Thread
impl UnwindSafe for Thread
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