pub struct PollForJobsOutput {
pub jobs: Option<Vec<Job>>,
}
Expand description
Represents the output of a PollForJobs
action.
Fields§
§jobs: Option<Vec<Job>>
Information about the jobs to take action on.
Trait Implementations§
Source§impl Clone for PollForJobsOutput
impl Clone for PollForJobsOutput
Source§fn clone(&self) -> PollForJobsOutput
fn clone(&self) -> PollForJobsOutput
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 PollForJobsOutput
impl Debug for PollForJobsOutput
Source§impl Default for PollForJobsOutput
impl Default for PollForJobsOutput
Source§fn default() -> PollForJobsOutput
fn default() -> PollForJobsOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PollForJobsOutput
impl<'de> Deserialize<'de> for PollForJobsOutput
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 PollForJobsOutput
impl PartialEq for PollForJobsOutput
impl StructuralPartialEq for PollForJobsOutput
Auto Trait Implementations§
impl Freeze for PollForJobsOutput
impl RefUnwindSafe for PollForJobsOutput
impl Send for PollForJobsOutput
impl Sync for PollForJobsOutput
impl Unpin for PollForJobsOutput
impl UnwindSafe for PollForJobsOutput
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