pub struct CheckpointSyncFailure {
pub error: String,
pub uuid: Uuid,
}Expand description
Information about a failed checkpoint sync.
JSON schema
{
"description": "Information about a failed checkpoint sync.",
"type": "object",
"required": [
"error",
"uuid"
],
"properties": {
"error": {
"description": "Error message associated with the failure.",
"type": "string"
},
"uuid": {
"description": "UUID of the failed checkpoint.",
"type": "string",
"format": "uuid"
}
}
}Fields§
§error: StringError message associated with the failure.
uuid: UuidUUID of the failed checkpoint.
Implementations§
Source§impl CheckpointSyncFailure
impl CheckpointSyncFailure
pub fn builder() -> CheckpointSyncFailure
Trait Implementations§
Source§impl Clone for CheckpointSyncFailure
impl Clone for CheckpointSyncFailure
Source§fn clone(&self) -> CheckpointSyncFailure
fn clone(&self) -> CheckpointSyncFailure
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 CheckpointSyncFailure
impl Debug for CheckpointSyncFailure
Source§impl<'de> Deserialize<'de> for CheckpointSyncFailure
impl<'de> Deserialize<'de> for CheckpointSyncFailure
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 From<&CheckpointSyncFailure> for CheckpointSyncFailure
impl From<&CheckpointSyncFailure> for CheckpointSyncFailure
Source§fn from(value: &CheckpointSyncFailure) -> Self
fn from(value: &CheckpointSyncFailure) -> Self
Converts to this type from the input type.
Source§impl From<CheckpointSyncFailure> for CheckpointSyncFailure
impl From<CheckpointSyncFailure> for CheckpointSyncFailure
Source§fn from(value: CheckpointSyncFailure) -> Self
fn from(value: CheckpointSyncFailure) -> Self
Converts to this type from the input type.
Source§impl Serialize for CheckpointSyncFailure
impl Serialize for CheckpointSyncFailure
Source§impl TryFrom<CheckpointSyncFailure> for CheckpointSyncFailure
impl TryFrom<CheckpointSyncFailure> for CheckpointSyncFailure
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: CheckpointSyncFailure) -> Result<Self, ConversionError>
fn try_from(value: CheckpointSyncFailure) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for CheckpointSyncFailure
impl RefUnwindSafe for CheckpointSyncFailure
impl Send for CheckpointSyncFailure
impl Sync for CheckpointSyncFailure
impl Unpin for CheckpointSyncFailure
impl UnsafeUnpin for CheckpointSyncFailure
impl UnwindSafe for CheckpointSyncFailure
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