pub struct AStarNode {
pub id: NodeId,
pub position: Vec2,
pub walkable: bool,
}Fields§
§id: NodeId§position: Vec2§walkable: boolAuto Trait Implementations§
impl Freeze for AStarNode
impl RefUnwindSafe for AStarNode
impl Send for AStarNode
impl Sync for AStarNode
impl Unpin for AStarNode
impl UnsafeUnpin for AStarNode
impl UnwindSafe for AStarNode
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