pub struct RcGraphNode {
pub id: u32,
pub data: u64,
pub out_edges: Vec<u32>,
}Expand description
A node in the RC graph.
Fields§
§id: u32§data: u64§out_edges: Vec<u32>Trait Implementations§
Source§impl Clone for RcGraphNode
impl Clone for RcGraphNode
Source§fn clone(&self) -> RcGraphNode
fn clone(&self) -> RcGraphNode
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for RcGraphNode
impl RefUnwindSafe for RcGraphNode
impl Send for RcGraphNode
impl Sync for RcGraphNode
impl Unpin for RcGraphNode
impl UnsafeUnpin for RcGraphNode
impl UnwindSafe for RcGraphNode
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