pub struct RecordedStep {
pub time_seconds: f64,
pub events: Vec<Event>,
}Expand description
Runtime events observed or selected at one explicit scene time.
Fields§
§time_seconds: f64Scene time in seconds; it need not be monotonic across steps.
events: Vec<Event>Events in their original decision order.
Trait Implementations§
Source§impl Clone for RecordedStep
impl Clone for RecordedStep
Source§fn clone(&self) -> RecordedStep
fn clone(&self) -> RecordedStep
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 RecordedStep
impl Debug for RecordedStep
Source§impl<'de> Deserialize<'de> for RecordedStep
impl<'de> Deserialize<'de> for RecordedStep
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
Source§impl PartialEq for RecordedStep
impl PartialEq for RecordedStep
Source§fn eq(&self, other: &RecordedStep) -> bool
fn eq(&self, other: &RecordedStep) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RecordedStep
impl Serialize for RecordedStep
impl StructuralPartialEq for RecordedStep
Auto Trait Implementations§
impl Freeze for RecordedStep
impl RefUnwindSafe for RecordedStep
impl Send for RecordedStep
impl Sync for RecordedStep
impl Unpin for RecordedStep
impl UnsafeUnpin for RecordedStep
impl UnwindSafe for RecordedStep
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