pub struct FrameRC {
pub downlink_signal: Option<u8>,
pub uplink_signal: Option<u8>,
pub aileron: u16,
pub elevator: u16,
pub throttle: u16,
pub rudder: u16,
}Fields§
§downlink_signal: Option<u8>Downlink signal strength
uplink_signal: Option<u8>Uplink signal strength
aileron: u16Right stick horizontal position (aileron)
elevator: u16Right stick vertical position (elevator)
throttle: u16Left stick vertical position (throttle)
rudder: u16Left stick horizontal position (rudder)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FrameRC
impl RefUnwindSafe for FrameRC
impl Send for FrameRC
impl Sync for FrameRC
impl Unpin for FrameRC
impl UnwindSafe for FrameRC
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