pub struct SubscribedWorkteam {
pub listing_id: Option<String>,
pub marketplace_description: Option<String>,
pub marketplace_title: Option<String>,
pub seller_name: Option<String>,
pub workteam_arn: String,
}
Expand description
Describes a work team of a vendor that does the a labelling job.
Fields§
§listing_id: Option<String>
Marketplace product listing ID.
marketplace_description: Option<String>
The description of the vendor from the Amazon Marketplace.
marketplace_title: Option<String>
The title of the service provided by the vendor in the Amazon Marketplace.
seller_name: Option<String>
The name of the vendor in the Amazon Marketplace.
workteam_arn: String
The Amazon Resource Name (ARN) of the vendor that you have subscribed.
Trait Implementations§
Source§impl Clone for SubscribedWorkteam
impl Clone for SubscribedWorkteam
Source§fn clone(&self) -> SubscribedWorkteam
fn clone(&self) -> SubscribedWorkteam
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 SubscribedWorkteam
impl Debug for SubscribedWorkteam
Source§impl Default for SubscribedWorkteam
impl Default for SubscribedWorkteam
Source§fn default() -> SubscribedWorkteam
fn default() -> SubscribedWorkteam
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SubscribedWorkteam
impl<'de> Deserialize<'de> for SubscribedWorkteam
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 SubscribedWorkteam
impl PartialEq for SubscribedWorkteam
impl StructuralPartialEq for SubscribedWorkteam
Auto Trait Implementations§
impl Freeze for SubscribedWorkteam
impl RefUnwindSafe for SubscribedWorkteam
impl Send for SubscribedWorkteam
impl Sync for SubscribedWorkteam
impl Unpin for SubscribedWorkteam
impl UnwindSafe for SubscribedWorkteam
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