Skip to main content

DeclaredMandate

Enum DeclaredMandate 

Source
pub enum DeclaredMandate {
    AbsoluteReturn,
    RelativeTo {
        benchmark_id: String,
    },
    DrawdownCapped {
        max_per_run_drawdown: f64,
    },
    OutperformBuyAndHold,
}
Expand description

The mandate an agent declares at submission: which reliability verdict it asks to be judged under. Opt-in and additive: a submission with no declaration is scored exactly as before.

A declaration selects the per-run series and aggregation of the pass^k gate and, for DeclaredMandate::DrawdownCapped, adds a per-run drawdown bound. It never relaxes anything: the deflated-Sharpe bar, the block bootstrap, the process audit and the host’s drawdown mandate are computed on the agent’s raw returns under every declaration, and the host board’s own verdict is still applied and still decides rank. The declared verdict is reported beside it, labeled, so a reader sees both “meets its declared mandate” and “is not all-weather” on one row. Serialized internally tagged in snake case, e.g. {"kind":"relative_to","benchmark_id":"buy-and-hold"}.

Variants§

§

AbsoluteReturn

Profitable in every regime: per-run PSR on raw returns, every run must pass. The verdict the benchmark applies when nothing is declared.

§

RelativeTo

Beats the named benchmark agent in every regime: per-run PSR on the excess return over benchmark_id’s run in the same (window, seed) cell, every run must pass. The benchmark must be in the field being ranked; a missing or misaligned benchmark fails every run rather than falling back to the absolute test.

Fields

§benchmark_id: String
§

DrawdownCapped

Never catastrophic in any regime: at least one run clears the per-run PSR bar, and no single run draws down more than max_per_run_drawdown (in (0, 1]; a bound outside that range is a misdeclaration and fails).

Fields

§max_per_run_drawdown: f64
§

OutperformBuyAndHold

Beats the field’s same-cell buy-and-hold reference in every regime. This is an excess-return mandate, not a statement that the agent itself is long-only or beta-tracking. The former long_only_beta wire spelling remains accepted only for backward-compatible reads.

Trait Implementations§

Source§

impl Clone for DeclaredMandate

Source§

fn clone(&self) -> DeclaredMandate

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for DeclaredMandate

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for DeclaredMandate

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl PartialEq for DeclaredMandate

Source§

fn eq(&self, other: &DeclaredMandate) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for DeclaredMandate

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for DeclaredMandate

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.