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