pub struct NodeBase {
pub id: String,
pub index: usize,
pub elevation: f64,
pub initial_quality: f64,
}Expand description
Properties common to all node types (§2.4.1). Static.
Fields§
§id: StringString identifier for this node.
index: usize1-based index assigned at load time.
elevation: f64Node elevation (internal length units, m).
initial_quality: f64Initial water quality concentration (mg/L, h, or % depending on mode).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for NodeBase
impl RefUnwindSafe for NodeBase
impl Send for NodeBase
impl Sync for NodeBase
impl Unpin for NodeBase
impl UnsafeUnpin for NodeBase
impl UnwindSafe for NodeBase
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