pub struct VelocityPositionSlowMessage {Show 16 fields
pub from: String,
pub latitude: f64,
pub longitude: f64,
pub true_altitude: f64,
pub altitude_agl: f64,
pub pitch: f64,
pub bank: f64,
pub heading: f64,
pub on_ground: bool,
pub x_velocity: f64,
pub y_velocity: f64,
pub z_velocity: f64,
pub pitch_rad_per_sec: f64,
pub heading_rad_per_sec: f64,
pub bank_rad_per_sec: f64,
pub nose_gear_angle: Option<f64>,
}Fields§
§from: String§latitude: f64§longitude: f64§true_altitude: f64§altitude_agl: f64§pitch: f64§bank: f64§heading: f64§on_ground: bool§x_velocity: f64§y_velocity: f64§z_velocity: f64§pitch_rad_per_sec: f64§heading_rad_per_sec: f64§bank_rad_per_sec: f64§nose_gear_angle: Option<f64>Implementations§
Source§impl VelocityPositionSlowMessage
impl VelocityPositionSlowMessage
pub fn new( from: impl AsRef<str>, latitude: f64, longitude: f64, true_altitude: f64, altitude_agl: f64, pitch: f64, bank: f64, heading: f64, on_ground: bool, x_velocity: f64, y_velocity: f64, z_velocity: f64, pitch_rad_per_sec: f64, heading_rad_per_sec: f64, bank_rad_per_sec: f64, nose_gear_angle: Option<f64>, ) -> Self
Trait Implementations§
Source§impl Clone for VelocityPositionSlowMessage
impl Clone for VelocityPositionSlowMessage
Source§fn clone(&self) -> VelocityPositionSlowMessage
fn clone(&self) -> VelocityPositionSlowMessage
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 VelocityPositionSlowMessage
impl Debug for VelocityPositionSlowMessage
Source§impl From<VelocityPositionSlowMessage> for VelocityPositionFastMessage
impl From<VelocityPositionSlowMessage> for VelocityPositionFastMessage
Source§fn from(value: VelocityPositionSlowMessage) -> Self
fn from(value: VelocityPositionSlowMessage) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for VelocityPositionSlowMessage
impl RefUnwindSafe for VelocityPositionSlowMessage
impl Send for VelocityPositionSlowMessage
impl Sync for VelocityPositionSlowMessage
impl Unpin for VelocityPositionSlowMessage
impl UnwindSafe for VelocityPositionSlowMessage
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