pub struct TrackId(/* private fields */);Expand description
Unique identifier for a tracked object across frames.
Backed by a u64. Track IDs are unique within a single feed session.
After a feed restart, track IDs may be reused (the temporal store is cleared).
Implementations§
Trait Implementations§
impl Copy for TrackId
impl Eq for TrackId
impl StructuralPartialEq for TrackId
Auto Trait Implementations§
impl Freeze for TrackId
impl RefUnwindSafe for TrackId
impl Send for TrackId
impl Sync for TrackId
impl Unpin for TrackId
impl UnsafeUnpin for TrackId
impl UnwindSafe for TrackId
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