pub struct SimulationRunSingleEvent {
pub id: SimulationRunID,
pub status: SimulationRunStatus,
pub created_at: String,
pub updated_at: String,
pub type: EventTypeName,
}
Expand description
Represents a simulation run entity for a single event.
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: EventTypeName
Type of event sent by Paddle, in the format entity.event_type
.
Trait Implementations§
Source§impl Clone for SimulationRunSingleEvent
impl Clone for SimulationRunSingleEvent
Source§fn clone(&self) -> SimulationRunSingleEvent
fn clone(&self) -> SimulationRunSingleEvent
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 SimulationRunSingleEvent
impl Debug for SimulationRunSingleEvent
Source§impl<'de> Deserialize<'de> for SimulationRunSingleEvent
impl<'de> Deserialize<'de> for SimulationRunSingleEvent
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 SimulationRunSingleEvent
impl RefUnwindSafe for SimulationRunSingleEvent
impl Send for SimulationRunSingleEvent
impl Sync for SimulationRunSingleEvent
impl Unpin for SimulationRunSingleEvent
impl UnwindSafe for SimulationRunSingleEvent
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