pub struct OwnershipGraph {
pub nodes: Vec<GraphNode>,
pub edges: Vec<GraphEdge>,
}Fields§
§nodes: Vec<GraphNode>§edges: Vec<GraphEdge>Implementations§
Trait Implementations§
Source§impl Clone for OwnershipGraph
impl Clone for OwnershipGraph
Source§fn clone(&self) -> OwnershipGraph
fn clone(&self) -> OwnershipGraph
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 moreSource§impl Debug for OwnershipGraph
impl Debug for OwnershipGraph
Source§impl<'de> Deserialize<'de> for OwnershipGraph
impl<'de> Deserialize<'de> for OwnershipGraph
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
Auto Trait Implementations§
impl Freeze for OwnershipGraph
impl RefUnwindSafe for OwnershipGraph
impl Send for OwnershipGraph
impl Sync for OwnershipGraph
impl Unpin for OwnershipGraph
impl UnsafeUnpin for OwnershipGraph
impl UnwindSafe for OwnershipGraph
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