pub struct ScopeOfWork {
pub asin: Option<String>,
pub title: Option<String>,
pub quantity: Option<i32>,
pub required_skills: Option<Vec<String>>,
}Expand description
ScopeOfWork : The scope of work for the order.
Fields§
§asin: Option<String>The Amazon Standard Identification Number (ASIN) of the service job.
title: Option<String>The title of the service job.
quantity: Option<i32>The number of service jobs.
required_skills: Option<Vec<String>>A list of skills required to perform the job.
Implementations§
Source§impl ScopeOfWork
impl ScopeOfWork
Sourcepub fn new() -> ScopeOfWork
pub fn new() -> ScopeOfWork
The scope of work for the order.
Trait Implementations§
Source§impl Clone for ScopeOfWork
impl Clone for ScopeOfWork
Source§fn clone(&self) -> ScopeOfWork
fn clone(&self) -> ScopeOfWork
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 ScopeOfWork
impl Debug for ScopeOfWork
Source§impl Default for ScopeOfWork
impl Default for ScopeOfWork
Source§fn default() -> ScopeOfWork
fn default() -> ScopeOfWork
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ScopeOfWork
impl<'de> Deserialize<'de> for ScopeOfWork
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 ScopeOfWork
impl PartialEq for ScopeOfWork
Source§impl Serialize for ScopeOfWork
impl Serialize for ScopeOfWork
impl StructuralPartialEq for ScopeOfWork
Auto Trait Implementations§
impl Freeze for ScopeOfWork
impl RefUnwindSafe for ScopeOfWork
impl Send for ScopeOfWork
impl Sync for ScopeOfWork
impl Unpin for ScopeOfWork
impl UnwindSafe for ScopeOfWork
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