pub enum NodeQuantity {
Head,
GaugePressure,
Demand,
Quality,
}Expand description
Node result quantities available via get_node_result (§8.2.1).
Variants§
Head
Hydraulic head (internal length unit).
GaugePressure
Gauge pressure = head − elevation (internal length unit).
Demand
Demand delivered (internal volume/time unit).
Quality
Water quality (units depend on quality_mode).
Trait Implementations§
Source§impl Clone for NodeQuantity
impl Clone for NodeQuantity
Source§fn clone(&self) -> NodeQuantity
fn clone(&self) -> NodeQuantity
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 moreimpl Copy for NodeQuantity
Source§impl Debug for NodeQuantity
impl Debug for NodeQuantity
impl Eq for NodeQuantity
Source§impl PartialEq for NodeQuantity
impl PartialEq for NodeQuantity
Source§fn eq(&self, other: &NodeQuantity) -> bool
fn eq(&self, other: &NodeQuantity) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NodeQuantity
Auto Trait Implementations§
impl Freeze for NodeQuantity
impl RefUnwindSafe for NodeQuantity
impl Send for NodeQuantity
impl Sync for NodeQuantity
impl Unpin for NodeQuantity
impl UnsafeUnpin for NodeQuantity
impl UnwindSafe for NodeQuantity
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