pub struct OverlayEdge {
pub source: u32,
pub target: u32,
}Expand description
Edge insertion applied on top of the frozen artifact.
Fields§
§source: u32Source node id in dense index space.
target: u32Target node id in dense index space.
Trait Implementations§
Source§impl Clone for OverlayEdge
impl Clone for OverlayEdge
Source§fn clone(&self) -> OverlayEdge
fn clone(&self) -> OverlayEdge
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 OverlayEdge
impl Debug for OverlayEdge
Source§impl Hash for OverlayEdge
impl Hash for OverlayEdge
Source§impl Ord for OverlayEdge
impl Ord for OverlayEdge
Source§fn cmp(&self, other: &OverlayEdge) -> Ordering
fn cmp(&self, other: &OverlayEdge) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for OverlayEdge
impl PartialEq for OverlayEdge
Source§fn eq(&self, other: &OverlayEdge) -> bool
fn eq(&self, other: &OverlayEdge) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for OverlayEdge
impl PartialOrd for OverlayEdge
impl Copy for OverlayEdge
impl Eq for OverlayEdge
impl StructuralPartialEq for OverlayEdge
Auto Trait Implementations§
impl Freeze for OverlayEdge
impl RefUnwindSafe for OverlayEdge
impl Send for OverlayEdge
impl Sync for OverlayEdge
impl Unpin for OverlayEdge
impl UnsafeUnpin for OverlayEdge
impl UnwindSafe for OverlayEdge
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