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