pub struct OpticalFlowRad {
pub header: Header,
pub integration_time_us: u32,
pub integrated_x: f32,
pub integrated_y: f32,
pub integrated_xgyro: f32,
pub integrated_ygyro: f32,
pub integrated_zgyro: f32,
pub temperature: i16,
pub quality: u8,
pub time_delta_distance_us: u32,
pub distance: f32,
}Fields§
§header: Header§integration_time_us: u32§integrated_x: f32§integrated_y: f32§integrated_xgyro: f32§integrated_ygyro: f32§integrated_zgyro: f32§temperature: i16§quality: u8§time_delta_distance_us: u32§distance: f32Trait Implementations§
Source§impl Clone for OpticalFlowRad
impl Clone for OpticalFlowRad
Source§fn clone(&self) -> OpticalFlowRad
fn clone(&self) -> OpticalFlowRad
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 OpticalFlowRad
impl Debug for OpticalFlowRad
Source§impl Default for OpticalFlowRad
impl Default for OpticalFlowRad
Source§impl<'de> Deserialize<'de> for OpticalFlowRad
impl<'de> Deserialize<'de> for OpticalFlowRad
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 OpticalFlowRad
impl PartialEq for OpticalFlowRad
Source§impl Serialize for OpticalFlowRad
impl Serialize for OpticalFlowRad
impl Message for OpticalFlowRad
impl StructuralPartialEq for OpticalFlowRad
Auto Trait Implementations§
impl Freeze for OpticalFlowRad
impl RefUnwindSafe for OpticalFlowRad
impl Send for OpticalFlowRad
impl Sync for OpticalFlowRad
impl Unpin for OpticalFlowRad
impl UnwindSafe for OpticalFlowRad
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