pub struct SimulationRunScenario {
pub id: SimulationRunID,
pub status: SimulationRunStatus,
pub created_at: String,
pub updated_at: String,
pub type: SimulationScenarioType,
}
Expand description
Represents a simulation run entity for a scenario.
Fields§
§id: SimulationRunID
Unique Paddle ID for this simulation run, prefixed with ntfsimrun_
.
status: SimulationRunStatus
Status of this simulation run.
created_at: String
RFC 3339 datetime string of when this entity was created. Set automatically by Paddle.
updated_at: String
RFC 3339 datetime string of when this entity was updated. Set automatically by Paddle.
type: SimulationScenarioType
Scenario for a simulation.
Trait Implementations§
Source§impl Clone for SimulationRunScenario
impl Clone for SimulationRunScenario
Source§fn clone(&self) -> SimulationRunScenario
fn clone(&self) -> SimulationRunScenario
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 SimulationRunScenario
impl Debug for SimulationRunScenario
Source§impl<'de> Deserialize<'de> for SimulationRunScenario
impl<'de> Deserialize<'de> for SimulationRunScenario
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 SimulationRunScenario
impl RefUnwindSafe for SimulationRunScenario
impl Send for SimulationRunScenario
impl Sync for SimulationRunScenario
impl Unpin for SimulationRunScenario
impl UnwindSafe for SimulationRunScenario
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