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