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