pub struct GridPoint2D<T> {
pub x: T,
pub y: T,
}
Fields§
§x: T
§y: T
Implementations§
Source§impl<T> GridPoint2D<T>
impl<T> GridPoint2D<T>
Trait Implementations§
Source§impl<T> BoardNeighborManager<GridPoint2D<T>, IntoIter<GridPoint2D<T>>> for NeighborMoorewhere
T: PointPrimInt,
impl<T> BoardNeighborManager<GridPoint2D<T>, IntoIter<GridPoint2D<T>>> for NeighborMoorewhere
T: PointPrimInt,
fn get_neighbors_idx(&self, idx: &GridPoint2D<T>) -> IntoIter<GridPoint2D<T>>
Source§impl<T> BoardNeighborManager<GridPoint2D<T>, IntoIter<GridPoint2D<T>>> for NeighborMooreDonut<Shape2D>where
T: PointPrimInt,
impl<T> BoardNeighborManager<GridPoint2D<T>, IntoIter<GridPoint2D<T>>> for NeighborMooreDonut<Shape2D>where
T: PointPrimInt,
fn get_neighbors_idx(&self, idx: &GridPoint2D<T>) -> IntoIter<GridPoint2D<T>>
Source§impl<T> BoardNeighborManager<GridPoint2D<T>, IntoIter<GridPoint2D<T>>> for NeighborMooreTrianglewhere
T: PointPrimInt,
impl<T> BoardNeighborManager<GridPoint2D<T>, IntoIter<GridPoint2D<T>>> for NeighborMooreTrianglewhere
T: PointPrimInt,
fn get_neighbors_idx(&self, idx: &GridPoint2D<T>) -> IntoIter<GridPoint2D<T>>
Source§impl<T, U> BoardNeighborManager<GridPoint2D<U>, IntoIter<GridPoint2D<U>>> for NeighborsGridDonut<T>where
T: MarginPrimInt,
U: PointPrimInt,
impl<T, U> BoardNeighborManager<GridPoint2D<U>, IntoIter<GridPoint2D<U>>> for NeighborsGridDonut<T>where
T: MarginPrimInt,
U: PointPrimInt,
fn get_neighbors_idx(&self, idx: &GridPoint2D<U>) -> IntoIter<GridPoint2D<U>>
Source§impl<T, U> BoardNeighborManager<GridPoint2D<U>, IntoIter<GridPoint2D<U>>> for NeighborsGridSurround<T>
impl<T, U> BoardNeighborManager<GridPoint2D<U>, IntoIter<GridPoint2D<U>>> for NeighborsGridSurround<T>
fn get_neighbors_idx(&self, idx: &GridPoint2D<U>) -> IntoIter<GridPoint2D<U>>
Source§impl<T: Clone> Clone for GridPoint2D<T>
impl<T: Clone> Clone for GridPoint2D<T>
Source§fn clone(&self) -> GridPoint2D<T>
fn clone(&self) -> GridPoint2D<T>
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<T: Debug> Debug for GridPoint2D<T>
impl<T: Debug> Debug for GridPoint2D<T>
Source§impl<'de, T> Deserialize<'de> for GridPoint2D<T>where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for GridPoint2D<T>where
T: Deserialize<'de>,
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
Source§impl<T, U, I> GridFactory<GridPoint2D<T>, U, I> for Grid<GridPoint2D<T>>where
T: PrimInt + FromPrimitive + Send + Sync,
U: PrimInt + Unsigned + ToPrimitive + Send + Sync,
I: Iterator<Item = U>,
impl<T, U, I> GridFactory<GridPoint2D<T>, U, I> for Grid<GridPoint2D<T>>where
T: PrimInt + FromPrimitive + Send + Sync,
U: PrimInt + Unsigned + ToPrimitive + Send + Sync,
I: Iterator<Item = U>,
fn new_with_origin(shape: I, origin: GridOrigin) -> Grid<GridPoint2D<T>>
fn new(shape: I) -> Grid<T>
Source§impl<T> Hash for GridPoint2D<T>where
T: Hash,
impl<T> Hash for GridPoint2D<T>where
T: Hash,
Source§impl<T> PartialEq for GridPoint2D<T>where
T: PartialEq,
impl<T> PartialEq for GridPoint2D<T>where
T: PartialEq,
Source§impl<T> Serialize for GridPoint2D<T>where
T: Serialize,
impl<T> Serialize for GridPoint2D<T>where
T: Serialize,
Source§impl<T> ToGridPointND<T> for GridPoint2D<T>where
T: Clone,
impl<T> ToGridPointND<T> for GridPoint2D<T>where
T: Clone,
fn to_nd(&self) -> GridPointND<T>
impl<T> Eq for GridPoint2D<T>where
T: PartialEq,
Auto Trait Implementations§
impl<T> Freeze for GridPoint2D<T>where
T: Freeze,
impl<T> RefUnwindSafe for GridPoint2D<T>where
T: RefUnwindSafe,
impl<T> Send for GridPoint2D<T>where
T: Send,
impl<T> Sync for GridPoint2D<T>where
T: Sync,
impl<T> Unpin for GridPoint2D<T>where
T: Unpin,
impl<T> UnwindSafe for GridPoint2D<T>where
T: 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<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more