#[repr(C)]pub struct TrajectoryRaw {
pub detected_x: f64,
pub detected_y: f64,
pub projected_x: f64,
pub projected_y: f64,
pub equation_a: f64,
pub equation_b: f64,
pub equation_c: f64,
pub confidence: f32,
pub _pad: f32,
}Expand description
Mirrors VNTrajectoryRaw.
Fields§
§detected_x: f64§detected_y: f64§projected_x: f64§projected_y: f64§equation_a: f64§equation_b: f64§equation_c: f64§confidence: f32§_pad: f32Auto Trait Implementations§
impl Freeze for TrajectoryRaw
impl RefUnwindSafe for TrajectoryRaw
impl Send for TrajectoryRaw
impl Sync for TrajectoryRaw
impl Unpin for TrajectoryRaw
impl UnsafeUnpin for TrajectoryRaw
impl UnwindSafe for TrajectoryRaw
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