pub struct TravelPoint {
pub x: f32,
pub y: f32,
pub travelable: bool,
pub kind: TravelKind,
}
Fields§
§x: f32
§y: f32
§travelable: bool
§kind: TravelKind
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TravelPoint
impl RefUnwindSafe for TravelPoint
impl Send for TravelPoint
impl Sync for TravelPoint
impl Unpin for TravelPoint
impl UnwindSafe for TravelPoint
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