pub struct ListSnapshotsResponse {
pub namespace_id: NamespaceId,
pub snapshots: Vec<SnapshotSummary>,
pub next_cursor: Option<String>,
}Expand description
One page of live read snapshots.
Fields§
§namespace_id: NamespaceIdNamespace the snapshots belong to.
snapshots: Vec<SnapshotSummary>Live snapshot records in ascending snapshot-id order.
next_cursor: Option<String>Opaque cursor for the next page.
Trait Implementations§
Source§impl Clone for ListSnapshotsResponse
impl Clone for ListSnapshotsResponse
Source§impl Debug for ListSnapshotsResponse
impl Debug for ListSnapshotsResponse
Source§impl<'de> Deserialize<'de> for ListSnapshotsResponse
impl<'de> Deserialize<'de> for ListSnapshotsResponse
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 ListSnapshotsResponse
Source§impl PagedResponse for ListSnapshotsResponse
impl PagedResponse for ListSnapshotsResponse
Source§impl PartialEq for ListSnapshotsResponse
impl PartialEq for ListSnapshotsResponse
Source§impl Serialize for ListSnapshotsResponse
impl Serialize for ListSnapshotsResponse
impl StructuralPartialEq for ListSnapshotsResponse
Auto Trait Implementations§
impl Freeze for ListSnapshotsResponse
impl RefUnwindSafe for ListSnapshotsResponse
impl Send for ListSnapshotsResponse
impl Sync for ListSnapshotsResponse
impl Unpin for ListSnapshotsResponse
impl UnsafeUnpin for ListSnapshotsResponse
impl UnwindSafe for ListSnapshotsResponse
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