pub struct PhaseShiftResultMsg {
pub status: String,
pub phase_label: String,
pub expansion_factor: u32,
pub conformance: f64,
pub boiling_point: f64,
pub crossed_boiling_point: bool,
pub summary: String,
}Expand description
Result of max/phaseShift.
Fields§
§status: StringBounded status string for the resolved phase.
phase_label: StringMatter-state label of the phase: Frozen, Liquid, Vapor,
Unsettled, or Decomposed.
expansion_factor: u32Autonomic-mesh amplification factor for the resolved phase.
conformance: f64The conformance measurement that drove the resolution.
boiling_point: f64The admission threshold (boiling point) compared against.
crossed_boiling_point: boolWhether the measurement crossed the boiling point into Vapor.
summary: StringHuman-readable summary (one line, no victory language).
Trait Implementations§
Source§impl Clone for PhaseShiftResultMsg
impl Clone for PhaseShiftResultMsg
Source§fn clone(&self) -> PhaseShiftResultMsg
fn clone(&self) -> PhaseShiftResultMsg
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 PhaseShiftResultMsg
impl Debug for PhaseShiftResultMsg
Source§impl<'de> Deserialize<'de> for PhaseShiftResultMsg
impl<'de> Deserialize<'de> for PhaseShiftResultMsg
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for PhaseShiftResultMsg
impl RefUnwindSafe for PhaseShiftResultMsg
impl Send for PhaseShiftResultMsg
impl Sync for PhaseShiftResultMsg
impl Unpin for PhaseShiftResultMsg
impl UnsafeUnpin for PhaseShiftResultMsg
impl UnwindSafe for PhaseShiftResultMsg
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