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