pub struct Recover {
pub product_type: ProductType,
pub app_platform: Platform,
pub app_version: String,
pub aircraft_sn: String,
pub aircraft_name: String,
pub timestamp: DateTime<Utc>,
pub camera_sn: String,
pub rc_sn: String,
pub battery_sn: String,
}Fields§
§product_type: ProductType§app_platform: Platform§app_version: String§aircraft_sn: String§aircraft_name: String§timestamp: DateTime<Utc>§camera_sn: String§rc_sn: String§battery_sn: StringTrait Implementations§
Source§impl BinRead for Recover
impl BinRead for Recover
Source§type Args<'__binrw_generated_args_lifetime> = RecoverBinReadArgs
type Args<'__binrw_generated_args_lifetime> = RecoverBinReadArgs
Source§fn read_options<R: Read + Seek>(
__binrw_generated_var_reader: &mut R,
__binrw_generated_var_endian: Endian,
__binrw_generated_var_arguments: Self::Args<'_>,
) -> BinResult<Self>
fn read_options<R: Read + Seek>( __binrw_generated_var_reader: &mut R, __binrw_generated_var_endian: Endian, __binrw_generated_var_arguments: Self::Args<'_>, ) -> BinResult<Self>
Source§fn read_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
fn read_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
Read
Self from the reader using the given arguments. Read moreSource§fn read_be_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
fn read_be_args<R>(reader: &mut R, args: Self::Args<'_>) -> Result<Self, Error>
Read
Self from the reader, assuming big-endian byte order, using the
given arguments. Read moreSource§impl ReadEndian for Recover
impl ReadEndian for Recover
Source§const ENDIAN: EndianKind
const ENDIAN: EndianKind
The endianness of the type.
Auto Trait Implementations§
impl Freeze for Recover
impl RefUnwindSafe for Recover
impl Send for Recover
impl Sync for Recover
impl Unpin for Recover
impl UnwindSafe for Recover
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