pub struct MoveResult3D {
pub position: (f64, f64, f64),
pub finished: bool,
}Expand description
3D route planning result.
Fields§
§position: (f64, f64, f64)New position after movement.
finished: boolWhether the agent reached the end of its route.
Trait Implementations§
Source§impl Clone for MoveResult3D
impl Clone for MoveResult3D
Source§fn clone(&self) -> MoveResult3D
fn clone(&self) -> MoveResult3D
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 Debug for MoveResult3D
impl Debug for MoveResult3D
impl Copy for MoveResult3D
Auto Trait Implementations§
impl Freeze for MoveResult3D
impl RefUnwindSafe for MoveResult3D
impl Send for MoveResult3D
impl Sync for MoveResult3D
impl Unpin for MoveResult3D
impl UnsafeUnpin for MoveResult3D
impl UnwindSafe for MoveResult3D
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