pub struct OdometryOwned {Show 16 fields
pub chassis_frame_id: String,
pub odom_frame_id: String,
pub position_x: f64,
pub position_y: f64,
pub position_z: f64,
pub orientation_w: f64,
pub orientation_x: f64,
pub orientation_y: f64,
pub orientation_z: f64,
pub lin_vel_x: f64,
pub lin_vel_y: f64,
pub lin_vel_z: f64,
pub ang_vel_x: f64,
pub ang_vel_y: f64,
pub ang_vel_z: f64,
pub timestamp_ns: i64,
}Expand description
Owned variant returned by from_struct_array.
Fields§
§chassis_frame_id: String§odom_frame_id: String§position_x: f64§position_y: f64§position_z: f64§orientation_w: f64§orientation_x: f64§orientation_y: f64§orientation_z: f64§lin_vel_x: f64§lin_vel_y: f64§lin_vel_z: f64§ang_vel_x: f64§ang_vel_y: f64§ang_vel_z: f64§timestamp_ns: i64Trait Implementations§
Source§impl Clone for OdometryOwned
impl Clone for OdometryOwned
Source§fn clone(&self) -> OdometryOwned
fn clone(&self) -> OdometryOwned
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 OdometryOwned
impl Debug for OdometryOwned
Source§impl PartialEq for OdometryOwned
impl PartialEq for OdometryOwned
impl StructuralPartialEq for OdometryOwned
Auto Trait Implementations§
impl Freeze for OdometryOwned
impl RefUnwindSafe for OdometryOwned
impl Send for OdometryOwned
impl Sync for OdometryOwned
impl Unpin for OdometryOwned
impl UnsafeUnpin for OdometryOwned
impl UnwindSafe for OdometryOwned
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