pub struct DirectedIndexEdge {
    pub src: PointId,
    pub dst: PointId,
}Fields§
§src: PointId§dst: PointIdTrait Implementations§
Source§impl Clone for DirectedIndexEdge
 
impl Clone for DirectedIndexEdge
Source§fn clone(&self) -> DirectedIndexEdge
 
fn clone(&self) -> DirectedIndexEdge
Returns a copy 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 DirectedIndexEdge
 
impl Debug for DirectedIndexEdge
Source§impl From<DirectedIndexEdge> for IndexEdge
 
impl From<DirectedIndexEdge> for IndexEdge
Source§fn from(directed: DirectedIndexEdge) -> IndexEdge
 
fn from(directed: DirectedIndexEdge) -> IndexEdge
Converts to this type from the input type.
Source§impl Ord for DirectedIndexEdge
 
impl Ord for DirectedIndexEdge
Source§fn cmp(&self, other: &DirectedIndexEdge) -> Ordering
 
fn cmp(&self, other: &DirectedIndexEdge) -> Ordering
1.21.0 · 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 DirectedIndexEdge
 
impl PartialEq for DirectedIndexEdge
Source§impl PartialOrd for DirectedIndexEdge
 
impl PartialOrd for DirectedIndexEdge
impl Copy for DirectedIndexEdge
impl Eq for DirectedIndexEdge
impl StructuralPartialEq for DirectedIndexEdge
Auto Trait Implementations§
impl Freeze for DirectedIndexEdge
impl RefUnwindSafe for DirectedIndexEdge
impl Send for DirectedIndexEdge
impl Sync for DirectedIndexEdge
impl Unpin for DirectedIndexEdge
impl UnwindSafe for DirectedIndexEdge
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