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: SimulationRunIDUnique Paddle ID for this simulation run, prefixed with ntfsimrun_.
status: SimulationRunStatusStatus of this simulation run.
created_at: StringRFC 3339 datetime string of when this entity was created. Set automatically by Paddle.
updated_at: StringRFC 3339 datetime string of when this entity was updated. Set automatically by Paddle.
type: EventTypeNameType 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<SimulationRunSingleEvent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<SimulationRunSingleEvent, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for SimulationRunSingleEvent
impl Serialize for SimulationRunSingleEvent
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. 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