pub struct SweepResult {
pub delta_rho: f64,
pub rows: Vec<SweepRow>,
pub warnings: Vec<String>,
}Expand description
Result of a sweep over multiple injection redshifts.
Fields§
§delta_rho: f64§rows: Vec<SweepRow>§warnings: Vec<String>Aggregated diagnostic warnings across all sweep workers.
Implementations§
Trait Implementations§
Source§impl Clone for SweepResult
impl Clone for SweepResult
Source§fn clone(&self) -> SweepResult
fn clone(&self) -> SweepResult
Returns a copy 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 SweepResult
impl Debug for SweepResult
Source§impl Serializable for SweepResult
impl Serializable for SweepResult
Auto Trait Implementations§
impl Freeze for SweepResult
impl RefUnwindSafe for SweepResult
impl Send for SweepResult
impl Sync for SweepResult
impl Unpin for SweepResult
impl UnwindSafe for SweepResult
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