pub struct AdmissionInputs {
pub planned_profile: u64,
pub live_profile: u64,
pub requirements: Vec<RequirementInputs>,
pub budget: Vec<BudgetInputs>,
pub schedule: ScheduleInputs,
}Expand description
The normalized, immutable admission inputs — (S,P,V,L,Q,B) reduced to the
membrane-relevant encoded form. Probed and normalized ONCE; fed to both paths.
Fields§
§planned_profile: u64The profile hash bound at plan time (P digest).
live_profile: u64The live re-probed profile hash.
requirements: Vec<RequirementInputs>Per-requirement inputs.
budget: Vec<BudgetInputs>Per-dimension budget inputs.
schedule: ScheduleInputsThe lowering-schedule membrane inputs (the supplied schedule + its declarations).
Trait Implementations§
Source§impl Clone for AdmissionInputs
impl Clone for AdmissionInputs
Source§fn clone(&self) -> AdmissionInputs
fn clone(&self) -> AdmissionInputs
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 moreSource§impl Debug for AdmissionInputs
impl Debug for AdmissionInputs
impl Eq for AdmissionInputs
Source§impl PartialEq for AdmissionInputs
impl PartialEq for AdmissionInputs
Source§fn eq(&self, other: &AdmissionInputs) -> bool
fn eq(&self, other: &AdmissionInputs) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AdmissionInputs
Auto Trait Implementations§
impl Freeze for AdmissionInputs
impl RefUnwindSafe for AdmissionInputs
impl Send for AdmissionInputs
impl Sync for AdmissionInputs
impl Unpin for AdmissionInputs
impl UnsafeUnpin for AdmissionInputs
impl UnwindSafe for AdmissionInputs
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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