pub struct RadarTrack {
pub uuid: UUID,
pub position: Point,
pub velocity: Vector3,
pub acceleration: Vector3,
pub size: Vector3,
pub classification: u16,
pub position_covariance: [f32; 6],
pub velocity_covariance: [f32; 6],
pub acceleration_covariance: [f32; 6],
pub size_covariance: [f32; 6],
}Fields§
§uuid: UUID§position: Point§velocity: Vector3§acceleration: Vector3§size: Vector3§classification: u16§position_covariance: [f32; 6]§velocity_covariance: [f32; 6]§acceleration_covariance: [f32; 6]§size_covariance: [f32; 6]Implementations§
Trait Implementations§
Source§impl Clone for RadarTrack
impl Clone for RadarTrack
Source§fn clone(&self) -> RadarTrack
fn clone(&self) -> RadarTrack
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 RadarTrack
impl Debug for RadarTrack
Source§impl Default for RadarTrack
impl Default for RadarTrack
Source§impl<'de> Deserialize<'de> for RadarTrack
impl<'de> Deserialize<'de> for RadarTrack
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 RadarTrack
impl PartialEq for RadarTrack
Source§impl Serialize for RadarTrack
impl Serialize for RadarTrack
impl Message for RadarTrack
impl StructuralPartialEq for RadarTrack
Auto Trait Implementations§
impl Freeze for RadarTrack
impl RefUnwindSafe for RadarTrack
impl Send for RadarTrack
impl Sync for RadarTrack
impl Unpin for RadarTrack
impl UnwindSafe for RadarTrack
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