pub struct JobDetails {
pub account_id: Option<String>,
pub data: Option<JobData>,
pub id: Option<String>,
}
Expand description
Represents information about the details of a job.
Fields§
§account_id: Option<String>
The AWS account ID associated with the job.
data: Option<JobData>
Represents other information about a job required for a job worker to complete the job.
id: Option<String>
The unique system-generated ID of the job.
Trait Implementations§
Source§impl Clone for JobDetails
impl Clone for JobDetails
Source§fn clone(&self) -> JobDetails
fn clone(&self) -> JobDetails
Returns a copy 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 JobDetails
impl Debug for JobDetails
Source§impl Default for JobDetails
impl Default for JobDetails
Source§fn default() -> JobDetails
fn default() -> JobDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JobDetails
impl<'de> Deserialize<'de> for JobDetails
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 JobDetails
impl PartialEq for JobDetails
impl StructuralPartialEq for JobDetails
Auto Trait Implementations§
impl Freeze for JobDetails
impl RefUnwindSafe for JobDetails
impl Send for JobDetails
impl Sync for JobDetails
impl Unpin for JobDetails
impl UnwindSafe for JobDetails
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