pub struct DescribeJobDefinitionsResponse {
pub job_definitions: Option<Vec<JobDefinition>>,
pub next_token: Option<String>,
}
Fields§
§job_definitions: Option<Vec<JobDefinition>>
The list of job definitions.
next_token: Option<String>
The nextToken
value to include in a future DescribeJobDefinitions
request. When the results of a DescribeJobDefinitions
request exceed maxResults
, this value can be used to retrieve the next page of results. This value is null
when there are no more results to return.
Trait Implementations§
Source§impl Clone for DescribeJobDefinitionsResponse
impl Clone for DescribeJobDefinitionsResponse
Source§fn clone(&self) -> DescribeJobDefinitionsResponse
fn clone(&self) -> DescribeJobDefinitionsResponse
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 DescribeJobDefinitionsResponse
impl Default for DescribeJobDefinitionsResponse
Source§fn default() -> DescribeJobDefinitionsResponse
fn default() -> DescribeJobDefinitionsResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DescribeJobDefinitionsResponse
impl<'de> Deserialize<'de> for DescribeJobDefinitionsResponse
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 DescribeJobDefinitionsResponse
impl PartialEq for DescribeJobDefinitionsResponse
Source§fn eq(&self, other: &DescribeJobDefinitionsResponse) -> bool
fn eq(&self, other: &DescribeJobDefinitionsResponse) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for DescribeJobDefinitionsResponse
Auto Trait Implementations§
impl Freeze for DescribeJobDefinitionsResponse
impl RefUnwindSafe for DescribeJobDefinitionsResponse
impl Send for DescribeJobDefinitionsResponse
impl Sync for DescribeJobDefinitionsResponse
impl Unpin for DescribeJobDefinitionsResponse
impl UnwindSafe for DescribeJobDefinitionsResponse
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