pub struct Frame {
pub number: usize,
pub file: PathBuf,
pub utc: NaiveDateTime,
pub color: Option<Color>,
pub depth: Option<Depth>,
pub gsd: R64,
pub x: R64,
pub y: R64,
pub lat: R64,
pub lon: R64,
pub sunny: bool,
pub object_list: ObjectList,
}Fields§
§number: usize§file: PathBuf§utc: NaiveDateTime§color: Option<Color>§depth: Option<Depth>§gsd: R64§x: R64§y: R64§lat: R64§lon: R64§sunny: bool§object_list: ObjectListTrait Implementations§
Source§impl<'de> Deserialize<'de> for Frame
impl<'de> Deserialize<'de> for Frame
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for Frame
impl StructuralPartialEq for Frame
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