pub struct Recording { /* private fields */ }Expand description
An opaque, process-local Box2D recording accepted by crate::ReplayPlayer.
Box2D recording format version 3 contains raw native object representations and is not a
portable or stable serialization format. Safe Rust therefore neither imports nor exports its
bytes. A recording can only be produced by crate::RecordingSession::finish and replayed by
this build in the current process.
Implementations§
Source§impl Recording
impl Recording
Sourcepub const fn mixer_identities(&self) -> MixerIdentities
pub const fn mixer_identities(&self) -> MixerIdentities
Return the exact material-mixer behavior identities required for replay.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Recording
impl RefUnwindSafe for Recording
impl Send for Recording
impl Sync for Recording
impl Unpin for Recording
impl UnsafeUnpin for Recording
impl UnwindSafe for Recording
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