pub struct DownlinkPacket {
pub imu: Option<ImuData>,
pub baro: Option<AltimeterData>,
pub gps: Option<GnggaMessage>,
}Fields§
§imu: Option<ImuData>§baro: Option<AltimeterData>§gps: Option<GnggaMessage>Trait Implementations§
Source§impl Clone for DownlinkPacket
impl Clone for DownlinkPacket
Source§fn clone(&self) -> DownlinkPacket
fn clone(&self) -> DownlinkPacket
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 Format for DownlinkPacket
impl Format for DownlinkPacket
Auto Trait Implementations§
impl Freeze for DownlinkPacket
impl RefUnwindSafe for DownlinkPacket
impl Send for DownlinkPacket
impl Sync for DownlinkPacket
impl Unpin for DownlinkPacket
impl UnsafeUnpin for DownlinkPacket
impl UnwindSafe for DownlinkPacket
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