pub struct ListPathEntriesResponse {
pub namespace_id: NamespaceId,
pub path: AbsolutePath,
pub head_seq: ChangeSeq,
pub entries: Vec<PathEntry>,
pub next_cursor: Option<String>,
}Expand description
One directory listing and the namespace head used to read it.
Fields§
§namespace_id: NamespaceIdNamespace that was read.
path: AbsolutePathAbsolute path of the listed directory.
head_seq: ChangeSeqNamespace head sequence this listing was read from.
entries: Vec<PathEntry>The directory entries in canonical name-key order.
next_cursor: Option<String>Cursor for the next page, if more entries remain.
Trait Implementations§
Source§impl Clone for ListPathEntriesResponse
impl Clone for ListPathEntriesResponse
Source§impl Debug for ListPathEntriesResponse
impl Debug for ListPathEntriesResponse
Source§impl<'de> Deserialize<'de> for ListPathEntriesResponse
impl<'de> Deserialize<'de> for ListPathEntriesResponse
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 ListPathEntriesResponse
Source§impl PagedResponse for ListPathEntriesResponse
impl PagedResponse for ListPathEntriesResponse
Source§impl PartialEq for ListPathEntriesResponse
impl PartialEq for ListPathEntriesResponse
Source§impl Serialize for ListPathEntriesResponse
impl Serialize for ListPathEntriesResponse
impl StructuralPartialEq for ListPathEntriesResponse
Auto Trait Implementations§
impl Freeze for ListPathEntriesResponse
impl RefUnwindSafe for ListPathEntriesResponse
impl Send for ListPathEntriesResponse
impl Sync for ListPathEntriesResponse
impl Unpin for ListPathEntriesResponse
impl UnsafeUnpin for ListPathEntriesResponse
impl UnwindSafe for ListPathEntriesResponse
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