pub struct ChildResult {
pub status: ChildStatus,
pub output: Option<String>,
pub error: Option<String>,
pub usage: Option<UsageFacts>,
pub score: Option<FiniteF64>,
}Fields§
§status: ChildStatus§output: Option<String>§error: Option<String>§usage: Option<UsageFacts>§score: Option<FiniteF64>Observation-only quality score (verifier/judge). Finite by construction, and never a
branch input — thresholds that gate kernel decisions use fixed-point Ppm.
Trait Implementations§
Source§impl Clone for ChildResult
impl Clone for ChildResult
Source§fn clone(&self) -> ChildResult
fn clone(&self) -> ChildResult
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 ChildResult
impl Debug for ChildResult
Source§impl Default for ChildResult
impl Default for ChildResult
Source§fn default() -> ChildResult
fn default() -> ChildResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ChildResult
impl<'de> Deserialize<'de> for ChildResult
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 ChildResult
impl PartialEq for ChildResult
Source§impl Serialize for ChildResult
impl Serialize for ChildResult
impl StructuralPartialEq for ChildResult
Auto Trait Implementations§
impl Freeze for ChildResult
impl RefUnwindSafe for ChildResult
impl Send for ChildResult
impl Sync for ChildResult
impl Unpin for ChildResult
impl UnsafeUnpin for ChildResult
impl UnwindSafe for ChildResult
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