pub enum MissionCostClass {
Frontier,
Local,
Mixed,
}Expand description
Whether a completed mission’s spend is frontier-priced, local-marginal, or a blend — the calibration corpus is frontier-only, because a $0-marginal local mission next to $30–160 frontier missions would drag the corpus mean toward zero and pollute every future estimate (the local-inference-cost-accounting ticket).
Variants§
Frontier
Every run priced per-token at a frontier backend.
Local
Routed to the local tier for the entire mission (worker.backend == "local", never escalated): ~$0 marginal (fixed hardware +
electricity, not per-token).
Mixed
Started local and escalated to frontier mid-mission: actuals blend both tiers and are representative of neither corpus.
Trait Implementations§
Source§impl Clone for MissionCostClass
impl Clone for MissionCostClass
Source§fn clone(&self) -> MissionCostClass
fn clone(&self) -> MissionCostClass
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 MissionCostClass
Source§impl Debug for MissionCostClass
impl Debug for MissionCostClass
impl Eq for MissionCostClass
Source§impl PartialEq for MissionCostClass
impl PartialEq for MissionCostClass
impl StructuralPartialEq for MissionCostClass
Auto Trait Implementations§
impl Freeze for MissionCostClass
impl RefUnwindSafe for MissionCostClass
impl Send for MissionCostClass
impl Sync for MissionCostClass
impl Unpin for MissionCostClass
impl UnsafeUnpin for MissionCostClass
impl UnwindSafe for MissionCostClass
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