pub struct PcdPoint {Show 18 fields
pub x: f32,
pub y: f32,
pub z: f32,
pub dyn_prop: i8,
pub id: i16,
pub rcs: f32,
pub vx: f32,
pub vy: f32,
pub vx_comp: f32,
pub vy_comp: f32,
pub is_quality_valid: i8,
pub ambig_state: i8,
pub x_rms: i8,
pub y_rms: i8,
pub invalid_state: i8,
pub pdh0: i8,
pub vx_rms: i8,
pub vy_rms: i8,
}Fields§
§x: f32§y: f32§z: f32§dyn_prop: i8§id: i16§rcs: f32§vx: f32§vy: f32§vx_comp: f32§vy_comp: f32§is_quality_valid: i8§ambig_state: i8§x_rms: i8§y_rms: i8§invalid_state: i8§pdh0: i8§vx_rms: i8§vy_rms: i8Trait Implementations§
Source§impl PcdDeserialize for PcdPoint
impl PcdDeserialize for PcdPoint
Source§impl PcdSerialize for PcdPoint
impl PcdSerialize for PcdPoint
impl StructuralPartialEq for PcdPoint
Auto Trait Implementations§
impl Freeze for PcdPoint
impl RefUnwindSafe for PcdPoint
impl Send for PcdPoint
impl Sync for PcdPoint
impl Unpin for PcdPoint
impl UnwindSafe for PcdPoint
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more