pub struct FlowSimulationResult {
pub turbulence_points: Vec<TurbulencePoint>,
pub valve_points: Vec<ValvePoint>,
pub summary: FlowSummary,
}Expand description
Complete result of a flow simulation.
Fields§
§turbulence_points: Vec<TurbulencePoint>Turbulence points sorted by score descending.
valve_points: Vec<ValvePoint>Valve points sorted by node ID ascending.
summary: FlowSummaryAggregate statistics.
Trait Implementations§
Source§impl Clone for FlowSimulationResult
impl Clone for FlowSimulationResult
Source§fn clone(&self) -> FlowSimulationResult
fn clone(&self) -> FlowSimulationResult
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 FlowSimulationResult
impl Debug for FlowSimulationResult
Auto Trait Implementations§
impl Freeze for FlowSimulationResult
impl RefUnwindSafe for FlowSimulationResult
impl Send for FlowSimulationResult
impl Sync for FlowSimulationResult
impl Unpin for FlowSimulationResult
impl UnsafeUnpin for FlowSimulationResult
impl UnwindSafe for FlowSimulationResult
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