pub struct ListTrashResponse {
pub namespace_id: NamespaceId,
pub head_seq: ChangeSeq,
pub entries: Vec<TrashEntry>,
pub next_cursor: Option<String>,
}Expand description
One trash listing page: the namespace’s recoverable deletions.
Fields§
§namespace_id: NamespaceIdNamespace that was read.
head_seq: ChangeSeqHead sequence this page was evaluated at.
entries: Vec<TrashEntry>Recoverable deletions, oldest deletion first.
next_cursor: Option<String>Present when another page follows.
Trait Implementations§
Source§impl Clone for ListTrashResponse
impl Clone for ListTrashResponse
Source§fn clone(&self) -> ListTrashResponse
fn clone(&self) -> ListTrashResponse
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 ListTrashResponse
impl Debug for ListTrashResponse
Source§impl<'de> Deserialize<'de> for ListTrashResponse
impl<'de> Deserialize<'de> for ListTrashResponse
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 ListTrashResponse
Source§impl PartialEq for ListTrashResponse
impl PartialEq for ListTrashResponse
Source§impl Serialize for ListTrashResponse
impl Serialize for ListTrashResponse
impl StructuralPartialEq for ListTrashResponse
Auto Trait Implementations§
impl Freeze for ListTrashResponse
impl RefUnwindSafe for ListTrashResponse
impl Send for ListTrashResponse
impl Sync for ListTrashResponse
impl Unpin for ListTrashResponse
impl UnsafeUnpin for ListTrashResponse
impl UnwindSafe for ListTrashResponse
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