pub struct RadarReturn {
pub range: f32,
pub azimuth: f32,
pub elevation: f32,
pub doppler_velocity: f32,
pub amplitude: f32,
}Fields§
§range: f32§azimuth: f32§elevation: f32§doppler_velocity: f32§amplitude: f32Trait Implementations§
Source§impl Clone for RadarReturn
impl Clone for RadarReturn
Source§fn clone(&self) -> RadarReturn
fn clone(&self) -> RadarReturn
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 RadarReturn
impl Debug for RadarReturn
Source§impl Default for RadarReturn
impl Default for RadarReturn
Source§impl<'de> Deserialize<'de> for RadarReturn
impl<'de> Deserialize<'de> for RadarReturn
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 RadarReturn
impl PartialEq for RadarReturn
Source§impl Serialize for RadarReturn
impl Serialize for RadarReturn
impl Message for RadarReturn
impl StructuralPartialEq for RadarReturn
Auto Trait Implementations§
impl Freeze for RadarReturn
impl RefUnwindSafe for RadarReturn
impl Send for RadarReturn
impl Sync for RadarReturn
impl Unpin for RadarReturn
impl UnwindSafe for RadarReturn
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