pub struct ListFileRevisionsResponse {
pub namespace_id: NamespaceId,
pub inode_id: InodeId,
pub head_seq: ChangeSeq,
pub revisions: Vec<FileRevision>,
pub next_cursor: Option<String>,
}Expand description
Response for listing file revisions.
Fields§
§namespace_id: NamespaceIdNamespace that was read.
inode_id: InodeIdFile inode whose revisions were returned.
head_seq: ChangeSeqNamespace head sequence used for the read.
revisions: Vec<FileRevision>Retained revisions in order.
next_cursor: Option<String>Opaque cursor for the next page, if more revisions are available.
Trait Implementations§
Source§impl Clone for ListFileRevisionsResponse
impl Clone for ListFileRevisionsResponse
Source§fn clone(&self) -> ListFileRevisionsResponse
fn clone(&self) -> ListFileRevisionsResponse
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 ListFileRevisionsResponse
impl Debug for ListFileRevisionsResponse
Source§impl<'de> Deserialize<'de> for ListFileRevisionsResponse
impl<'de> Deserialize<'de> for ListFileRevisionsResponse
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 ListFileRevisionsResponse
impl StructuralPartialEq for ListFileRevisionsResponse
Auto Trait Implementations§
impl Freeze for ListFileRevisionsResponse
impl RefUnwindSafe for ListFileRevisionsResponse
impl Send for ListFileRevisionsResponse
impl Sync for ListFileRevisionsResponse
impl Unpin for ListFileRevisionsResponse
impl UnsafeUnpin for ListFileRevisionsResponse
impl UnwindSafe for ListFileRevisionsResponse
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