pub struct VelocityCommand {
pub vx: f64,
pub vy: f64,
pub vz: f64,
}Expand description
Output of the potential field planner: a 3-D velocity command.
Fields§
§vx: f64§vy: f64§vz: f64Trait Implementations§
Source§impl Clone for VelocityCommand
impl Clone for VelocityCommand
Source§fn clone(&self) -> VelocityCommand
fn clone(&self) -> VelocityCommand
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 VelocityCommand
impl Debug for VelocityCommand
Source§impl<'de> Deserialize<'de> for VelocityCommand
impl<'de> Deserialize<'de> for VelocityCommand
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 PartialEq for VelocityCommand
impl PartialEq for VelocityCommand
Source§impl Serialize for VelocityCommand
impl Serialize for VelocityCommand
impl StructuralPartialEq for VelocityCommand
Auto Trait Implementations§
impl Freeze for VelocityCommand
impl RefUnwindSafe for VelocityCommand
impl Send for VelocityCommand
impl Sync for VelocityCommand
impl Unpin for VelocityCommand
impl UnsafeUnpin for VelocityCommand
impl UnwindSafe for VelocityCommand
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