#[non_exhaustive]pub struct StartBackfillJobResponse {
pub object: Option<StreamObject>,
/* private fields */
}
Expand description
Response 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: Option<StreamObject>
The stream object resource a backfill job was started for.
Implementations§
Source§impl StartBackfillJobResponse
impl StartBackfillJobResponse
pub fn new() -> Self
Sourcepub fn set_object<T>(self, v: T) -> Selfwhere
T: Into<StreamObject>,
pub fn set_object<T>(self, v: T) -> Selfwhere
T: Into<StreamObject>,
Sets the value of object.
Sourcepub fn set_or_clear_object<T>(self, v: Option<T>) -> Selfwhere
T: Into<StreamObject>,
pub fn set_or_clear_object<T>(self, v: Option<T>) -> Selfwhere
T: Into<StreamObject>,
Sets or clears the value of object.
Trait Implementations§
Source§impl Clone for StartBackfillJobResponse
impl Clone for StartBackfillJobResponse
Source§fn clone(&self) -> StartBackfillJobResponse
fn clone(&self) -> StartBackfillJobResponse
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 StartBackfillJobResponse
impl Debug for StartBackfillJobResponse
Source§impl Default for StartBackfillJobResponse
impl Default for StartBackfillJobResponse
Source§fn default() -> StartBackfillJobResponse
fn default() -> StartBackfillJobResponse
Returns the “default value” for a type. Read more
Source§impl Message for StartBackfillJobResponse
impl Message for StartBackfillJobResponse
Source§impl PartialEq for StartBackfillJobResponse
impl PartialEq for StartBackfillJobResponse
impl StructuralPartialEq for StartBackfillJobResponse
Auto Trait Implementations§
impl Freeze for StartBackfillJobResponse
impl RefUnwindSafe for StartBackfillJobResponse
impl Send for StartBackfillJobResponse
impl Sync for StartBackfillJobResponse
impl Unpin for StartBackfillJobResponse
impl UnwindSafe for StartBackfillJobResponse
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