pub struct PflyIpcData {Show 22 fields
pub altitude: i32,
pub agl: i32,
pub groundspeed: i32,
pub ias: i32,
pub headingTrue: i32,
pub headingMagnetic: i32,
pub latitude: f64,
pub longitude: f64,
pub verticalSpeed: i32,
pub landingVerticalSpeed: i32,
pub gForce: i32,
pub fuel: i32,
pub transponder: i32,
pub bridgeType: u8,
pub isOnGround: bool,
pub isSlew: bool,
pub isPaused: bool,
pub pitch: i32,
pub roll: i32,
pub time: i32,
pub fps: i32,
pub aircraftType: &'static str,
}
Expand description
Structure of data that projectFly expects over it’s X-Plane IPC connection.
As found in /src/app/providers/flightsim.service.ts
of the projectFly source.
Fields§
§altitude: i32
§agl: i32
§groundspeed: i32
§ias: i32
§headingTrue: i32
§headingMagnetic: i32
§latitude: f64
§longitude: f64
§verticalSpeed: i32
§landingVerticalSpeed: i32
§gForce: i32
§fuel: i32
§transponder: i32
§bridgeType: u8
§isOnGround: bool
§isSlew: bool
§isPaused: bool
§pitch: i32
§roll: i32
§time: i32
§fps: i32
§aircraftType: &'static str
Trait Implementations§
Auto Trait Implementations§
impl Freeze for PflyIpcData
impl RefUnwindSafe for PflyIpcData
impl Send for PflyIpcData
impl Sync for PflyIpcData
impl Unpin for PflyIpcData
impl UnwindSafe for PflyIpcData
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