pub struct PollForThirdPartyJobsInput {
pub action_type_id: ActionTypeId,
pub max_batch_size: Option<i64>,
}
Expand description
Represents the input of a PollForThirdPartyJobs
action.
Fields§
§action_type_id: ActionTypeId
Represents information about an action type.
max_batch_size: Option<i64>
The maximum number of jobs to return in a poll for jobs call.
Trait Implementations§
Source§impl Clone for PollForThirdPartyJobsInput
impl Clone for PollForThirdPartyJobsInput
Source§fn clone(&self) -> PollForThirdPartyJobsInput
fn clone(&self) -> PollForThirdPartyJobsInput
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 PollForThirdPartyJobsInput
impl Debug for PollForThirdPartyJobsInput
Source§impl Default for PollForThirdPartyJobsInput
impl Default for PollForThirdPartyJobsInput
Source§fn default() -> PollForThirdPartyJobsInput
fn default() -> PollForThirdPartyJobsInput
Returns the “default value” for a type. Read more
impl StructuralPartialEq for PollForThirdPartyJobsInput
Auto Trait Implementations§
impl Freeze for PollForThirdPartyJobsInput
impl RefUnwindSafe for PollForThirdPartyJobsInput
impl Send for PollForThirdPartyJobsInput
impl Sync for PollForThirdPartyJobsInput
impl Unpin for PollForThirdPartyJobsInput
impl UnwindSafe for PollForThirdPartyJobsInput
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