pub struct ScanSummary {
pub start_time: Option<DateTime<Utc>>,
pub end_time: Option<DateTime<Utc>>,
pub elevation: u8,
pub start_azimuth: f32,
pub end_azimuth: f32,
pub data_types: HashMap<String, usize>,
}Expand description
Summary of a single scan.
Fields§
§start_time: Option<DateTime<Utc>>§end_time: Option<DateTime<Utc>>§elevation: u8§start_azimuth: f32§end_azimuth: f32§data_types: HashMap<String, usize>The number of messages containing a given radar data type.
Trait Implementations§
Source§impl Clone for ScanSummary
impl Clone for ScanSummary
Source§fn clone(&self) -> ScanSummary
fn clone(&self) -> ScanSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ScanSummary
impl Debug for ScanSummary
Source§impl PartialEq for ScanSummary
impl PartialEq for ScanSummary
Source§fn eq(&self, other: &ScanSummary) -> bool
fn eq(&self, other: &ScanSummary) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ScanSummary
Auto Trait Implementations§
impl Freeze for ScanSummary
impl RefUnwindSafe for ScanSummary
impl Send for ScanSummary
impl Sync for ScanSummary
impl Unpin for ScanSummary
impl UnsafeUnpin for ScanSummary
impl UnwindSafe for ScanSummary
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