#[repr(C)]pub struct RadarDetection {
pub velocity: f32,
pub azimuth: f32,
pub altitude: f32,
pub depth: f32,
}Fields§
§velocity: f32§azimuth: f32§altitude: f32§depth: f32Implementations§
Trait Implementations§
source§impl CopyNew for RadarDetection
impl CopyNew for RadarDetection
source§unsafe fn copy_new(
other: &RadarDetection,
this: Pin<&mut MaybeUninit<RadarDetection>>
)
unsafe fn copy_new(
other: &RadarDetection,
this: Pin<&mut MaybeUninit<RadarDetection>>
)
Synthesized copy constructor.
source§impl Drop for RadarDetection
impl Drop for RadarDetection
source§fn drop(self: &mut RadarDetection)
fn drop(self: &mut RadarDetection)
Synthesized destructor.
source§impl ExternType for RadarDetection
impl ExternType for RadarDetection
source§impl MakeCppStorage for RadarDetection
impl MakeCppStorage for RadarDetection
source§unsafe fn allocate_uninitialized_cpp_storage() -> *mut RadarDetection
unsafe fn allocate_uninitialized_cpp_storage() -> *mut RadarDetection
Allocates heap space for this type in C++ and return a pointer
to that space, but do not initialize that space (i.e. do not
yet call a constructor). Read more
source§unsafe fn free_uninitialized_cpp_storage(arg0: *mut RadarDetection)
unsafe fn free_uninitialized_cpp_storage(arg0: *mut RadarDetection)
Frees a C++ allocation which has not yet
had a constructor called. Read more
source§impl MoveNew for RadarDetection
impl MoveNew for RadarDetection
source§unsafe fn move_new(
other: Pin<MoveRef<'_, RadarDetection>>,
this: Pin<&mut MaybeUninit<RadarDetection>>
)
unsafe fn move_new(
other: Pin<MoveRef<'_, RadarDetection>>,
this: Pin<&mut MaybeUninit<RadarDetection>>
)
Synthesized move constructor.