pub struct CollectionDirectionalSpeedEvidenceMemberV1 {
pub duration_s: Option<f64>,
pub horizontal_displacement_x_m: Option<f64>,
pub horizontal_displacement_z_m: Option<f64>,
pub horizontal_travel_m: Option<f64>,
pub speed_mps: Option<f64>,
/* private fields */
}Expand description
Raw root-travel values for one manifest member. None values retain a V2
unavailable/not-applicable prerequisite without creating a subset result.
Fields§
§duration_s: Option<f64>Raw measured duration.
horizontal_displacement_x_m: Option<f64>Raw positive-X endpoint displacement.
horizontal_displacement_z_m: Option<f64>Raw positive-Z endpoint displacement.
horizontal_travel_m: Option<f64>Raw sampled horizontal travel, retained but never used as speed.
speed_mps: Option<f64>Published V2 speed measurement.
Implementations§
Trait Implementations§
Source§impl Clone for CollectionDirectionalSpeedEvidenceMemberV1
impl Clone for CollectionDirectionalSpeedEvidenceMemberV1
Source§fn clone(&self) -> CollectionDirectionalSpeedEvidenceMemberV1
fn clone(&self) -> CollectionDirectionalSpeedEvidenceMemberV1
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl StructuralPartialEq for CollectionDirectionalSpeedEvidenceMemberV1
Auto Trait Implementations§
impl Freeze for CollectionDirectionalSpeedEvidenceMemberV1
impl RefUnwindSafe for CollectionDirectionalSpeedEvidenceMemberV1
impl Send for CollectionDirectionalSpeedEvidenceMemberV1
impl Sync for CollectionDirectionalSpeedEvidenceMemberV1
impl Unpin for CollectionDirectionalSpeedEvidenceMemberV1
impl UnsafeUnpin for CollectionDirectionalSpeedEvidenceMemberV1
impl UnwindSafe for CollectionDirectionalSpeedEvidenceMemberV1
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