pub struct CheckpointStatusQuery {
pub incarnation_uuid: Option<Uuid>,
}Expand description
Query parameters for /checkpoint_status and /checkpoint/sync_status.
Fields§
§incarnation_uuid: Option<Uuid>Pass the value from the initial response, to detect pipeline restarts.
Optional to allow older clients to continue working.
Trait Implementations§
Source§impl Clone for CheckpointStatusQuery
impl Clone for CheckpointStatusQuery
Source§fn clone(&self) -> CheckpointStatusQuery
fn clone(&self) -> CheckpointStatusQuery
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 CheckpointStatusQuery
impl Debug for CheckpointStatusQuery
Source§impl Default for CheckpointStatusQuery
impl Default for CheckpointStatusQuery
Source§fn default() -> CheckpointStatusQuery
fn default() -> CheckpointStatusQuery
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CheckpointStatusQuery
impl<'de> Deserialize<'de> for CheckpointStatusQuery
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
Auto Trait Implementations§
impl Freeze for CheckpointStatusQuery
impl RefUnwindSafe for CheckpointStatusQuery
impl Send for CheckpointStatusQuery
impl Sync for CheckpointStatusQuery
impl Unpin for CheckpointStatusQuery
impl UnsafeUnpin for CheckpointStatusQuery
impl UnwindSafe for CheckpointStatusQuery
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