pub struct PlanRuntimePrefixRestoreInput<'a> {
pub request_id: &'a RequestId,
pub input_tokens: &'a [TokenId],
pub maximum_sequence_tokens: usize,
pub checkpoint: Option<&'a dyn PrefixCaptureLease>,
pub retry: Option<&'a PlanRuntimePrefixRestoreDeferral>,
}Expand description
The exact input already admitted by the plan runtime. Restoration does not replace admission or authorize a different request incarnation.
Fields§
§request_id: &'a RequestId§input_tokens: &'a [TokenId]§maximum_sequence_tokens: usize§checkpoint: Option<&'a dyn PrefixCaptureLease>An authenticated ready source retained by an earlier rendezvous. This bypasses index lookup, never target admission or native compatibility.
retry: Option<&'a PlanRuntimePrefixRestoreDeferral>Exact retained source from a prior capacity deferral; never reselect the index.
Trait Implementations§
Source§impl<'a> Clone for PlanRuntimePrefixRestoreInput<'a>
impl<'a> Clone for PlanRuntimePrefixRestoreInput<'a>
Source§fn clone(&self) -> PlanRuntimePrefixRestoreInput<'a>
fn clone(&self) -> PlanRuntimePrefixRestoreInput<'a>
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<'a> Copy for PlanRuntimePrefixRestoreInput<'a>
Auto Trait Implementations§
impl<'a> !RefUnwindSafe for PlanRuntimePrefixRestoreInput<'a>
impl<'a> !UnwindSafe for PlanRuntimePrefixRestoreInput<'a>
impl<'a> Freeze for PlanRuntimePrefixRestoreInput<'a>
impl<'a> Send for PlanRuntimePrefixRestoreInput<'a>
impl<'a> Sync for PlanRuntimePrefixRestoreInput<'a>
impl<'a> Unpin for PlanRuntimePrefixRestoreInput<'a>
impl<'a> UnsafeUnpin for PlanRuntimePrefixRestoreInput<'a>
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