pub struct CheckpointStatus {
pub success: Option<u64>,
pub failure: Option<CheckpointFailure>,
}Expand description
Checkpoint status returned by the /checkpoint_status endpoint.
Fields§
§success: Option<u64>Most recently successful checkpoint.
failure: Option<CheckpointFailure>Most recently failed checkpoint, and the associated error.
Trait Implementations§
Source§impl Clone for CheckpointStatus
impl Clone for CheckpointStatus
Source§fn clone(&self) -> CheckpointStatus
fn clone(&self) -> CheckpointStatus
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 CheckpointStatus
impl Debug for CheckpointStatus
Source§impl Default for CheckpointStatus
impl Default for CheckpointStatus
Source§fn default() -> CheckpointStatus
fn default() -> CheckpointStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CheckpointStatus
impl<'de> Deserialize<'de> for CheckpointStatus
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 CheckpointStatus
impl Serialize for CheckpointStatus
Auto Trait Implementations§
impl Freeze for CheckpointStatus
impl RefUnwindSafe for CheckpointStatus
impl Send for CheckpointStatus
impl Sync for CheckpointStatus
impl Unpin for CheckpointStatus
impl UnwindSafe for CheckpointStatus
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