pub struct ListCheckpointsResponse {
pub namespace_id: NamespaceId,
pub checkpoints: Vec<CheckpointSummary>,
}Expand description
Every active checkpoint record a namespace currently carries.
Fields§
§namespace_id: NamespaceIdNamespace the records belong to.
checkpoints: Vec<CheckpointSummary>Active records, oldest first. Released records are absent because a release is what stops a record pinning anything; a released record that garbage collection has not yet deleted is not reported either.
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