pub enum ValidationStatus {
Pending,
Accepted,
Degraded,
Rejected,
Recovered,
}Expand description
Outcome of the validation pipeline for a frame.
Variants§
Pending
Not yet validated — set by adapters before crate::validate_frame runs.
A Pending frame must never cross a language boundary.
Accepted
Passed all checks.
Degraded
Usable but with reduced confidence; carries a reason in quality_reasons.
Rejected
Failed a hard check; quarantined when quarantine is enabled, otherwise dropped.
Recovered
Reconstructed during replay or gap-recovery; timestamp monotonicity is waived.
Implementations§
Source§impl ValidationStatus
impl ValidationStatus
Sourcepub fn is_exposable(self) -> bool
pub fn is_exposable(self) -> bool
Whether a frame with this status may be exposed to SDK/DSP/memory/agents.
Trait Implementations§
Source§impl Clone for ValidationStatus
impl Clone for ValidationStatus
Source§fn clone(&self) -> ValidationStatus
fn clone(&self) -> ValidationStatus
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 ValidationStatus
impl Debug for ValidationStatus
Source§impl<'de> Deserialize<'de> for ValidationStatus
impl<'de> Deserialize<'de> for ValidationStatus
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 ValidationStatus
impl PartialEq for ValidationStatus
Source§fn eq(&self, other: &ValidationStatus) -> bool
fn eq(&self, other: &ValidationStatus) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ValidationStatus
impl Serialize for ValidationStatus
impl Copy for ValidationStatus
impl Eq for ValidationStatus
impl StructuralPartialEq for ValidationStatus
Auto Trait Implementations§
impl Freeze for ValidationStatus
impl RefUnwindSafe for ValidationStatus
impl Send for ValidationStatus
impl Sync for ValidationStatus
impl Unpin for ValidationStatus
impl UnsafeUnpin for ValidationStatus
impl UnwindSafe for ValidationStatus
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