pub struct GetThirdPartyJobDetailsOutput {
pub job_details: Option<ThirdPartyJobDetails>,
}
Expand description
Represents the output of a GetThirdPartyJobDetails
action.
Fields§
§job_details: Option<ThirdPartyJobDetails>
The details of the job, including any protected values defined for the job.
Trait Implementations§
Source§impl Clone for GetThirdPartyJobDetailsOutput
impl Clone for GetThirdPartyJobDetailsOutput
Source§fn clone(&self) -> GetThirdPartyJobDetailsOutput
fn clone(&self) -> GetThirdPartyJobDetailsOutput
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 Default for GetThirdPartyJobDetailsOutput
impl Default for GetThirdPartyJobDetailsOutput
Source§fn default() -> GetThirdPartyJobDetailsOutput
fn default() -> GetThirdPartyJobDetailsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetThirdPartyJobDetailsOutput
impl<'de> Deserialize<'de> for GetThirdPartyJobDetailsOutput
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 GetThirdPartyJobDetailsOutput
impl PartialEq for GetThirdPartyJobDetailsOutput
Source§fn eq(&self, other: &GetThirdPartyJobDetailsOutput) -> bool
fn eq(&self, other: &GetThirdPartyJobDetailsOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetThirdPartyJobDetailsOutput
Auto Trait Implementations§
impl Freeze for GetThirdPartyJobDetailsOutput
impl RefUnwindSafe for GetThirdPartyJobDetailsOutput
impl Send for GetThirdPartyJobDetailsOutput
impl Sync for GetThirdPartyJobDetailsOutput
impl Unpin for GetThirdPartyJobDetailsOutput
impl UnwindSafe for GetThirdPartyJobDetailsOutput
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