pub struct RuntimeStateReport {
pub version: u32,
pub numeric_path: NumericPath,
pub fingerprint: u64,
pub tick: u64,
pub entries: Vec<RuntimeStateEntry>,
}Expand description
Read-only semantic checkpoint report.
Fields§
§version: u32Checkpoint format version.
numeric_path: NumericPathNumeric signal path.
fingerprint: u64Immutable runtime fingerprint.
tick: u64Last frame tick.
entries: Vec<RuntimeStateEntry>Named state entries in lexical knot-name order.
Trait Implementations§
Source§impl Clone for RuntimeStateReport
impl Clone for RuntimeStateReport
Source§fn clone(&self) -> RuntimeStateReport
fn clone(&self) -> RuntimeStateReport
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 RuntimeStateReport
impl Debug for RuntimeStateReport
Source§impl PartialEq for RuntimeStateReport
impl PartialEq for RuntimeStateReport
impl StructuralPartialEq for RuntimeStateReport
Auto Trait Implementations§
impl Freeze for RuntimeStateReport
impl RefUnwindSafe for RuntimeStateReport
impl Send for RuntimeStateReport
impl Sync for RuntimeStateReport
impl Unpin for RuntimeStateReport
impl UnsafeUnpin for RuntimeStateReport
impl UnwindSafe for RuntimeStateReport
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