#[non_exhaustive]pub struct StopBackfillJobRequest {
pub object: String,
/* private fields */
}
Expand description
Request for manually stopping a running backfill job for a specific stream object.
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.object: String
Required. The name of the stream object resource to stop the backfill job for.
Implementations§
Trait Implementations§
Source§impl Clone for StopBackfillJobRequest
impl Clone for StopBackfillJobRequest
Source§fn clone(&self) -> StopBackfillJobRequest
fn clone(&self) -> StopBackfillJobRequest
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 StopBackfillJobRequest
impl Debug for StopBackfillJobRequest
Source§impl Default for StopBackfillJobRequest
impl Default for StopBackfillJobRequest
Source§fn default() -> StopBackfillJobRequest
fn default() -> StopBackfillJobRequest
Returns the “default value” for a type. Read more
Source§impl Message for StopBackfillJobRequest
impl Message for StopBackfillJobRequest
Source§impl PartialEq for StopBackfillJobRequest
impl PartialEq for StopBackfillJobRequest
impl StructuralPartialEq for StopBackfillJobRequest
Auto Trait Implementations§
impl Freeze for StopBackfillJobRequest
impl RefUnwindSafe for StopBackfillJobRequest
impl Send for StopBackfillJobRequest
impl Sync for StopBackfillJobRequest
impl Unpin for StopBackfillJobRequest
impl UnwindSafe for StopBackfillJobRequest
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