pub struct CheckpointSyncStatus {
pub success: Option<Uuid>,
pub failure: Option<CheckpointSyncFailure>,
}Expand description
Checkpoint status returned by the /checkpoint/sync_status endpoint.
Fields§
§success: Option<Uuid>Most recently successful checkpoint sync.
failure: Option<CheckpointSyncFailure>Most recently failed checkpoint sync, and the associated error.
Trait Implementations§
Source§impl Clone for CheckpointSyncStatus
impl Clone for CheckpointSyncStatus
Source§fn clone(&self) -> CheckpointSyncStatus
fn clone(&self) -> CheckpointSyncStatus
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for CheckpointSyncStatus
impl Debug for CheckpointSyncStatus
Source§impl Default for CheckpointSyncStatus
impl Default for CheckpointSyncStatus
Source§fn default() -> CheckpointSyncStatus
fn default() -> CheckpointSyncStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CheckpointSyncStatus
impl<'de> Deserialize<'de> for CheckpointSyncStatus
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 Serialize for CheckpointSyncStatus
impl Serialize for CheckpointSyncStatus
Auto Trait Implementations§
impl Freeze for CheckpointSyncStatus
impl RefUnwindSafe for CheckpointSyncStatus
impl Send for CheckpointSyncStatus
impl Sync for CheckpointSyncStatus
impl Unpin for CheckpointSyncStatus
impl UnwindSafe for CheckpointSyncStatus
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