pub struct RegimeObservation {
pub beta_n: f64,
pub q95: f64,
pub density_line_avg_1e20_m3: f64,
pub current_ramp_ma_s: f64,
}Expand description
Minimal observation bundle used for regime routing.
Fields§
§beta_n: f64§q95: f64§density_line_avg_1e20_m3: f64§current_ramp_ma_s: f64Trait Implementations§
Source§impl Clone for RegimeObservation
impl Clone for RegimeObservation
Source§fn clone(&self) -> RegimeObservation
fn clone(&self) -> RegimeObservation
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 RegimeObservation
impl Debug for RegimeObservation
Source§impl Default for RegimeObservation
impl Default for RegimeObservation
Source§impl PartialEq for RegimeObservation
impl PartialEq for RegimeObservation
impl Copy for RegimeObservation
impl StructuralPartialEq for RegimeObservation
Auto Trait Implementations§
impl Freeze for RegimeObservation
impl RefUnwindSafe for RegimeObservation
impl Send for RegimeObservation
impl Sync for RegimeObservation
impl Unpin for RegimeObservation
impl UnwindSafe for RegimeObservation
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more