pub enum DispatchSlot {
Resident(usize),
}Expand description
Where a dispatched block landed (always a retained resident slot since the first-miss-admit policy, 2026-07-08 — the transient staging tier went with the ghost filter).
Variants§
Trait Implementations§
Source§impl Clone for DispatchSlot
impl Clone for DispatchSlot
Source§fn clone(&self) -> DispatchSlot
fn clone(&self) -> DispatchSlot
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 moreimpl Copy for DispatchSlot
Auto Trait Implementations§
impl Freeze for DispatchSlot
impl RefUnwindSafe for DispatchSlot
impl Send for DispatchSlot
impl Sync for DispatchSlot
impl Unpin for DispatchSlot
impl UnsafeUnpin for DispatchSlot
impl UnwindSafe for DispatchSlot
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