#[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: 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 StartBackfillJobResponse
impl Clone for StartBackfillJobResponse
Source§fn clone(&self) -> StartBackfillJobResponse
fn clone(&self) -> StartBackfillJobResponse
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 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<'de> Deserialize<'de> for StartBackfillJobResponsewhere
StartBackfillJobResponse: Default,
impl<'de> Deserialize<'de> for StartBackfillJobResponsewhere
StartBackfillJobResponse: 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 StartBackfillJobResponse
impl Message for StartBackfillJobResponse
Source§impl PartialEq for StartBackfillJobResponse
impl PartialEq for StartBackfillJobResponse
Source§impl Serialize for StartBackfillJobResponse
impl Serialize 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