pub struct ListCheckpointsResponse {
pub namespace_id: NamespaceId,
pub checkpoints: Vec<Checkpoint>,
pub next_cursor: Option<String>,
}Expand description
One page of active checkpoint records.
Fields§
§namespace_id: NamespaceIdNamespace the records belong to.
checkpoints: Vec<Checkpoint>Active records in ascending checkpoint-id order. Released records are omitted even if garbage collection has not deleted them yet.
next_cursor: Option<String>Opaque cursor for the next page.
Trait Implementations§
Source§impl Clone for ListCheckpointsResponse
impl Clone for ListCheckpointsResponse
Source§fn clone(&self) -> ListCheckpointsResponse
fn clone(&self) -> ListCheckpointsResponse
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 ListCheckpointsResponse
impl Debug for ListCheckpointsResponse
Source§impl<'de> Deserialize<'de> for ListCheckpointsResponse
impl<'de> Deserialize<'de> for ListCheckpointsResponse
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
impl Eq for ListCheckpointsResponse
Source§impl PartialEq for ListCheckpointsResponse
impl PartialEq for ListCheckpointsResponse
Source§impl Serialize for ListCheckpointsResponse
impl Serialize for ListCheckpointsResponse
impl StructuralPartialEq for ListCheckpointsResponse
Auto Trait Implementations§
impl Freeze for ListCheckpointsResponse
impl RefUnwindSafe for ListCheckpointsResponse
impl Send for ListCheckpointsResponse
impl Sync for ListCheckpointsResponse
impl Unpin for ListCheckpointsResponse
impl UnsafeUnpin for ListCheckpointsResponse
impl UnwindSafe for ListCheckpointsResponse
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