pub struct SequenceCheckpoint<R: DeviceRuntime> { /* private fields */ }Expand description
Immutable copied state with independent physical/logical ownership. Clones pin the same accounted extents; they do not retain the source execution slot.
Implementations§
Source§impl<R: DeviceRuntime> SequenceCheckpoint<R>
impl<R: DeviceRuntime> SequenceCheckpoint<R>
pub fn plan_hash(&self) -> &PlanHash
pub fn layout_fingerprint(&self) -> &str
pub fn completed_tokens(&self) -> usize
pub fn token_prefix(&self) -> &[u32]
Sourcepub fn full_input(&self) -> &[u32]
pub fn full_input(&self) -> &[u32]
Original complete token input, including any not-yet-computed suffix.
pub fn logical_bytes(&self) -> u64
Sourcepub fn retained_bytes(&self) -> u64
pub fn retained_bytes(&self) -> u64
Exclusive allocator-aligned extents charged to the existing plan ledger.
Trait Implementations§
Source§impl<R: DeviceRuntime> Clone for SequenceCheckpoint<R>
impl<R: DeviceRuntime> Clone for SequenceCheckpoint<R>
Auto Trait Implementations§
impl<R> !RefUnwindSafe for SequenceCheckpoint<R>
impl<R> !UnwindSafe for SequenceCheckpoint<R>
impl<R> Freeze for SequenceCheckpoint<R>
impl<R> Send for SequenceCheckpoint<R>
impl<R> Sync for SequenceCheckpoint<R>
impl<R> Unpin for SequenceCheckpoint<R>
impl<R> UnsafeUnpin for SequenceCheckpoint<R>where
Arc<CapturedCheckpoint<R>>: UnsafeUnpin,
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