pub struct JudgmentDistribution {
pub data_only: usize,
pub ai_assistable: usize,
pub human_required: usize,
pub data_only_pct: f64,
pub ai_assistable_pct: f64,
pub human_required_pct: f64,
}Expand description
Step-level judgment classification breakdown.
Fields§
§data_only: usizeSteps fully automatable via data processing.
ai_assistable: usizeSteps where AI can assist but a human reviews.
human_required: usizeSteps requiring professional skepticism / human judgment.
data_only_pct: f64data_only as a percentage of total steps.
ai_assistable_pct: f64ai_assistable as a percentage of total steps.
human_required_pct: f64human_required as a percentage of total steps.
Trait Implementations§
Source§impl Clone for JudgmentDistribution
impl Clone for JudgmentDistribution
Source§fn clone(&self) -> JudgmentDistribution
fn clone(&self) -> JudgmentDistribution
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 JudgmentDistribution
impl Debug for JudgmentDistribution
Source§impl<'de> Deserialize<'de> for JudgmentDistribution
impl<'de> Deserialize<'de> for JudgmentDistribution
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
Auto Trait Implementations§
impl Freeze for JudgmentDistribution
impl RefUnwindSafe for JudgmentDistribution
impl Send for JudgmentDistribution
impl Sync for JudgmentDistribution
impl Unpin for JudgmentDistribution
impl UnsafeUnpin for JudgmentDistribution
impl UnwindSafe for JudgmentDistribution
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