pub struct WindowSummary {
pub total_measure_of_intervals: SpiceDouble,
pub average_measure: SpiceDouble,
pub standard_deviation: SpiceDouble,
pub shortest_interval_index: usize,
pub longest_interval_index: usize,
}
Expand description
Summary of a double precision window.
Returned from Cell::window_summarize()
Fields§
§total_measure_of_intervals: SpiceDouble
§average_measure: SpiceDouble
§standard_deviation: SpiceDouble
§shortest_interval_index: usize
§longest_interval_index: usize
Trait Implementations§
Source§impl Clone for WindowSummary
impl Clone for WindowSummary
Source§fn clone(&self) -> WindowSummary
fn clone(&self) -> WindowSummary
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 Debug for WindowSummary
impl Debug for WindowSummary
Source§impl PartialEq for WindowSummary
impl PartialEq for WindowSummary
impl StructuralPartialEq for WindowSummary
Auto Trait Implementations§
impl Freeze for WindowSummary
impl RefUnwindSafe for WindowSummary
impl Send for WindowSummary
impl Sync for WindowSummary
impl Unpin for WindowSummary
impl UnwindSafe for WindowSummary
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