pub struct Frame {
pub custom: FrameCustom,
pub osd: FrameOSD,
pub gimbal: FrameGimbal,
pub camera: FrameCamera,
pub rc: FrameRC,
pub battery: FrameBattery,
pub home: FrameHome,
pub recover: FrameRecover,
pub app: FrameApp,
}Expand description
Represents a normalized frame of data from a DJI log.
A Frame is a standardized representation of log data, normalized across
different log versions. It provides a consistent and easy-to-use format
for analyzing and processing DJI log information.
Fields§
§custom: FrameCustom§osd: FrameOSD§gimbal: FrameGimbal§camera: FrameCamera§rc: FrameRC§battery: FrameBattery§home: FrameHome§recover: FrameRecover§app: FrameAppTrait Implementations§
Auto Trait Implementations§
impl Freeze for Frame
impl RefUnwindSafe for Frame
impl Send for Frame
impl Sync for Frame
impl Unpin for Frame
impl UnwindSafe for Frame
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