pub struct LabelingJobForWorkteamSummary {
pub creation_time: f64,
pub job_reference_code: String,
pub label_counters: Option<LabelCountersForWorkteam>,
pub labeling_job_name: Option<String>,
pub number_of_human_workers_per_data_object: Option<i64>,
pub work_requester_account_id: String,
}
Expand description
Provides summary information for a work team.
Fields§
§creation_time: f64
The date and time that the labeling job was created.
job_reference_code: String
A unique identifier for a labeling job. You can use this to refer to a specific labeling job.
label_counters: Option<LabelCountersForWorkteam>
Provides information about the progress of a labeling job.
labeling_job_name: Option<String>
The name of the labeling job that the work team is assigned to.
number_of_human_workers_per_data_object: Option<i64>
The configured number of workers per data object.
work_requester_account_id: String
Trait Implementations§
Source§impl Clone for LabelingJobForWorkteamSummary
impl Clone for LabelingJobForWorkteamSummary
Source§fn clone(&self) -> LabelingJobForWorkteamSummary
fn clone(&self) -> LabelingJobForWorkteamSummary
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 Default for LabelingJobForWorkteamSummary
impl Default for LabelingJobForWorkteamSummary
Source§fn default() -> LabelingJobForWorkteamSummary
fn default() -> LabelingJobForWorkteamSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LabelingJobForWorkteamSummary
impl<'de> Deserialize<'de> for LabelingJobForWorkteamSummary
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 LabelingJobForWorkteamSummary
impl PartialEq for LabelingJobForWorkteamSummary
Source§fn eq(&self, other: &LabelingJobForWorkteamSummary) -> bool
fn eq(&self, other: &LabelingJobForWorkteamSummary) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for LabelingJobForWorkteamSummary
Auto Trait Implementations§
impl Freeze for LabelingJobForWorkteamSummary
impl RefUnwindSafe for LabelingJobForWorkteamSummary
impl Send for LabelingJobForWorkteamSummary
impl Sync for LabelingJobForWorkteamSummary
impl Unpin for LabelingJobForWorkteamSummary
impl UnwindSafe for LabelingJobForWorkteamSummary
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