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>The active records in ascending checkpoint ID order.
next_cursor: Option<String>Opaque cursor for the next page.
Trait Implementations§
Source§impl Clone for ListCheckpointsResponse
impl Clone for ListCheckpointsResponse
Source§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 PagedResponse for ListCheckpointsResponse
impl PagedResponse 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