#[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: Into<Option<StreamObject>>>(self, v: T) -> Self
pub fn set_object<T: Into<Option<StreamObject>>>(self, v: T) -> Self
Sets 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 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 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<'de> Deserialize<'de> for StopBackfillJobResponsewhere
StopBackfillJobResponse: Default,
impl<'de> Deserialize<'de> for StopBackfillJobResponsewhere
StopBackfillJobResponse: Default,
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Message for StopBackfillJobResponse
impl Message for StopBackfillJobResponse
Source§impl PartialEq for StopBackfillJobResponse
impl PartialEq for StopBackfillJobResponse
Source§impl Serialize for StopBackfillJobResponse
impl Serialize 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