pub struct LabelCounters {
pub failed_non_retryable_error: Option<i64>,
pub human_labeled: Option<i64>,
pub machine_labeled: Option<i64>,
pub total_labeled: Option<i64>,
pub unlabeled: Option<i64>,
}Expand description
Provides a breakdown of the number of objects labeled.
Fields§
§failed_non_retryable_error: Option<i64>The total number of objects that could not be labeled due to an error.
human_labeled: Option<i64>The total number of objects labeled by a human worker.
machine_labeled: Option<i64>The total number of objects labeled by automated data labeling.
total_labeled: Option<i64>The total number of objects labeled.
unlabeled: Option<i64>The total number of objects not yet labeled.
Trait Implementations§
Source§impl Clone for LabelCounters
impl Clone for LabelCounters
Source§fn clone(&self) -> LabelCounters
fn clone(&self) -> LabelCounters
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 LabelCounters
impl Debug for LabelCounters
Source§impl Default for LabelCounters
impl Default for LabelCounters
Source§fn default() -> LabelCounters
fn default() -> LabelCounters
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LabelCounters
impl<'de> Deserialize<'de> for LabelCounters
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 LabelCounters
impl PartialEq for LabelCounters
impl StructuralPartialEq for LabelCounters
Auto Trait Implementations§
impl Freeze for LabelCounters
impl RefUnwindSafe for LabelCounters
impl Send for LabelCounters
impl Sync for LabelCounters
impl Unpin for LabelCounters
impl UnwindSafe for LabelCounters
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