pub struct JobDependency {
pub job_id: Option<String>,
pub type_: Option<String>,
}Expand description
An object representing an AWS Batch job dependency.
Fields§
§job_id: Option<String>The job ID of the AWS Batch job associated with this dependency.
type_: Option<String>The type of the job dependency.
Trait Implementations§
Source§impl Clone for JobDependency
impl Clone for JobDependency
Source§fn clone(&self) -> JobDependency
fn clone(&self) -> JobDependency
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 JobDependency
impl Debug for JobDependency
Source§impl Default for JobDependency
impl Default for JobDependency
Source§fn default() -> JobDependency
fn default() -> JobDependency
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for JobDependency
impl<'de> Deserialize<'de> for JobDependency
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 JobDependency
impl PartialEq for JobDependency
Source§impl Serialize for JobDependency
impl Serialize for JobDependency
impl StructuralPartialEq for JobDependency
Auto Trait Implementations§
impl Freeze for JobDependency
impl RefUnwindSafe for JobDependency
impl Send for JobDependency
impl Sync for JobDependency
impl Unpin for JobDependency
impl UnwindSafe for JobDependency
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