pub struct Phase1AdmissionPlan { /* private fields */ }Expand description
Exact per-chunk phase-1 admissions computed while an autoroute key is built. The plan is intentionally opaque: callers can only reuse it through the scanner boundary that verifies its internal totals and exact live chunk identity. GPU region presence does not consume this plan because VYRE owns that path’s trigger admission.
Implementations§
Source§impl Phase1AdmissionPlan
impl Phase1AdmissionPlan
pub fn summary(&self) -> Phase1AdmissionSummary
pub fn phase2_keyword_triggers(&self) -> Phase2KeywordTriggerSummary
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Phase1AdmissionPlan
impl RefUnwindSafe for Phase1AdmissionPlan
impl Send for Phase1AdmissionPlan
impl Sync for Phase1AdmissionPlan
impl Unpin for Phase1AdmissionPlan
impl UnsafeUnpin for Phase1AdmissionPlan
impl UnwindSafe for Phase1AdmissionPlan
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more