pub enum AgentEfficiencyEvidenceState {
Unavailable,
Failed,
Incompatible,
Partial,
Compatible,
}Expand description
Validation state for optional agent-efficiency benchmark evidence.
Variants§
No benchmark artifact was requested.
Failed
The requested artifact could not be read or decoded safely.
Incompatible
The artifact decoded but does not match the supported release contract.
Partial
Some matched evidence is valid while retained failures remain explicit.
Compatible
All required candidate and baseline trials matched successfully.
Implementations§
Trait Implementations§
Source§impl Clone for AgentEfficiencyEvidenceState
impl Clone for AgentEfficiencyEvidenceState
Source§fn clone(&self) -> AgentEfficiencyEvidenceState
fn clone(&self) -> AgentEfficiencyEvidenceState
Returns a duplicate of the value. Read more
1.0.0 · 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 AgentEfficiencyEvidenceState
impl Debug for AgentEfficiencyEvidenceState
Source§impl Default for AgentEfficiencyEvidenceState
impl Default for AgentEfficiencyEvidenceState
Source§fn default() -> AgentEfficiencyEvidenceState
fn default() -> AgentEfficiencyEvidenceState
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AgentEfficiencyEvidenceState
impl<'de> Deserialize<'de> for AgentEfficiencyEvidenceState
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
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 AgentEfficiencyEvidenceState
impl PartialEq for AgentEfficiencyEvidenceState
Source§fn eq(&self, other: &AgentEfficiencyEvidenceState) -> bool
fn eq(&self, other: &AgentEfficiencyEvidenceState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for AgentEfficiencyEvidenceState
impl Eq for AgentEfficiencyEvidenceState
impl StructuralPartialEq for AgentEfficiencyEvidenceState
Auto Trait Implementations§
impl Freeze for AgentEfficiencyEvidenceState
impl RefUnwindSafe for AgentEfficiencyEvidenceState
impl Send for AgentEfficiencyEvidenceState
impl Sync for AgentEfficiencyEvidenceState
impl Unpin for AgentEfficiencyEvidenceState
impl UnwindSafe for AgentEfficiencyEvidenceState
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.