pub struct NodeIndex<Ix: IndexType> {
pub horizontal: Ix,
pub vertical: Ix,
}
Expand description
Node index for [SquareGraph
]
Fields§
§horizontal: Ix
§vertical: Ix
Implementations§
Source§impl<Ix: IndexType> NodeIndex<Ix>
impl<Ix: IndexType> NodeIndex<Ix>
Sourcepub fn distance<T: Into<(usize, usize)>>(&self, target: T) -> usize
pub fn distance<T: Into<(usize, usize)>>(&self, target: T) -> usize
Returns the manhattan distance
Sourcepub unsafe fn get_edge_id_unchecked(
&self,
dir: SquareDirection,
) -> EdgeIndex<Ix>
pub unsafe fn get_edge_id_unchecked( &self, dir: SquareDirection, ) -> EdgeIndex<Ix>
Get the edge from this node. This does not check whether the node is valid in graph.
pub fn up(self) -> Self
pub fn down(self) -> Self
pub fn right(self) -> Self
pub fn left(self) -> Self
Trait Implementations§
Source§impl<Ix: Ord + IndexType> Ord for NodeIndex<Ix>
impl<Ix: Ord + IndexType> Ord for NodeIndex<Ix>
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<Ix: PartialOrd + IndexType> PartialOrd for NodeIndex<Ix>
impl<Ix: PartialOrd + IndexType> PartialOrd for NodeIndex<Ix>
impl<Ix: Copy + IndexType> Copy for NodeIndex<Ix>
impl<Ix: Eq + IndexType> Eq for NodeIndex<Ix>
impl<Ix: IndexType> StructuralPartialEq for NodeIndex<Ix>
Auto Trait Implementations§
impl<Ix> Freeze for NodeIndex<Ix>where
Ix: Freeze,
impl<Ix> RefUnwindSafe for NodeIndex<Ix>where
Ix: RefUnwindSafe,
impl<Ix> Send for NodeIndex<Ix>where
Ix: Send,
impl<Ix> Sync for NodeIndex<Ix>where
Ix: Sync,
impl<Ix> Unpin for NodeIndex<Ix>where
Ix: Unpin,
impl<Ix> UnwindSafe for NodeIndex<Ix>where
Ix: UnwindSafe,
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
Source§impl<T> ConstOrValue<T> for T
impl<T> ConstOrValue<T> for T
Source§const IS_CONST_WRAP: bool = false
const IS_CONST_WRAP: bool = false
get wheter the type is const generic wrapper.
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.