pub struct DriftSnapshot {
pub domains: Vec<DomainSnapshot>,
pub frame_id: u64,
}Expand description
Snapshot of all domains at a single point in time.
Fields§
§domains: Vec<DomainSnapshot>Per-domain snapshots.
frame_id: u64Frame number or tick count for timeline reference.
Trait Implementations§
Source§impl Clone for DriftSnapshot
impl Clone for DriftSnapshot
Source§fn clone(&self) -> DriftSnapshot
fn clone(&self) -> DriftSnapshot
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 moreAuto Trait Implementations§
impl Freeze for DriftSnapshot
impl RefUnwindSafe for DriftSnapshot
impl Send for DriftSnapshot
impl Sync for DriftSnapshot
impl Unpin for DriftSnapshot
impl UnsafeUnpin for DriftSnapshot
impl UnwindSafe for DriftSnapshot
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