pub struct DirectRecording {
pub meta: FreezeMeta,
pub events: Vec<PlayEvent>,
pub traces: Vec<ChainTraceRecord>,
}Expand description
A directly captured render: metadata plus its events and traces.
Fields§
§meta: FreezeMetaReproducibility metadata for the render.
events: Vec<PlayEvent>Rendered play events.
traces: Vec<ChainTraceRecord>Chain trace records produced during the render.
Trait Implementations§
Source§impl Clone for DirectRecording
impl Clone for DirectRecording
Source§fn clone(&self) -> DirectRecording
fn clone(&self) -> DirectRecording
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 DirectRecording
impl Debug for DirectRecording
impl Eq for DirectRecording
Source§impl PartialEq for DirectRecording
impl PartialEq for DirectRecording
impl StructuralPartialEq for DirectRecording
Auto Trait Implementations§
impl Freeze for DirectRecording
impl RefUnwindSafe for DirectRecording
impl Send for DirectRecording
impl Sync for DirectRecording
impl Unpin for DirectRecording
impl UnsafeUnpin for DirectRecording
impl UnwindSafe for DirectRecording
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