#[non_exhaustive]pub struct ResumeBatchLoadTaskInput {
pub task_id: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.task_id: Option<String>
The ID of the batch load task to resume.
Implementations§
source§impl ResumeBatchLoadTaskInput
impl ResumeBatchLoadTaskInput
sourcepub fn builder() -> ResumeBatchLoadTaskInputBuilder
pub fn builder() -> ResumeBatchLoadTaskInputBuilder
Creates a new builder-style object to manufacture ResumeBatchLoadTaskInput
.
Trait Implementations§
source§impl Clone for ResumeBatchLoadTaskInput
impl Clone for ResumeBatchLoadTaskInput
source§fn clone(&self) -> ResumeBatchLoadTaskInput
fn clone(&self) -> ResumeBatchLoadTaskInput
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 ResumeBatchLoadTaskInput
impl Debug for ResumeBatchLoadTaskInput
source§impl PartialEq<ResumeBatchLoadTaskInput> for ResumeBatchLoadTaskInput
impl PartialEq<ResumeBatchLoadTaskInput> for ResumeBatchLoadTaskInput
source§fn eq(&self, other: &ResumeBatchLoadTaskInput) -> bool
fn eq(&self, other: &ResumeBatchLoadTaskInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ResumeBatchLoadTaskInput
Auto Trait Implementations§
impl RefUnwindSafe for ResumeBatchLoadTaskInput
impl Send for ResumeBatchLoadTaskInput
impl Sync for ResumeBatchLoadTaskInput
impl Unpin for ResumeBatchLoadTaskInput
impl UnwindSafe for ResumeBatchLoadTaskInput
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