pub struct NodeData {
pub id: isize,
pub stage_id: usize,
pub season_id: usize,
pub start_date: DateTime<Utc>,
pub end_date: DateTime<Utc>,
pub kind: StudyPeriodKind,
pub system: System,
pub risk_measure: Box<dyn RiskMeasure>,
pub load_stochastic_process: Box<dyn StochasticProcess>,
pub inflow_stochastic_process: Box<dyn StochasticProcess>,
pub state_choice: String,
}Fields§
§id: isize§stage_id: usize§season_id: usize§start_date: DateTime<Utc>§end_date: DateTime<Utc>§kind: StudyPeriodKind§system: System§risk_measure: Box<dyn RiskMeasure>§load_stochastic_process: Box<dyn StochasticProcess>§inflow_stochastic_process: Box<dyn StochasticProcess>§state_choice: StringImplementations§
Auto Trait Implementations§
impl Freeze for NodeData
impl !RefUnwindSafe for NodeData
impl Send for NodeData
impl Sync for NodeData
impl Unpin for NodeData
impl !UnwindSafe for NodeData
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> 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