pub struct ExplorerListDirResponse {
pub root: String,
pub dir_rel: String,
pub entries: Vec<ExplorerEntry>,
pub truncated: bool,
}Expand description
Response payload for a directory listing.
Fields§
§root: StringAbsolute path of the workspace root.
dir_rel: StringRelative directory that was listed.
entries: Vec<ExplorerEntry>Entries in the directory.
truncated: booltrue when max_entries was reached before the full listing.
Trait Implementations§
Source§impl Clone for ExplorerListDirResponse
impl Clone for ExplorerListDirResponse
Source§fn clone(&self) -> ExplorerListDirResponse
fn clone(&self) -> ExplorerListDirResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 ExplorerListDirResponse
impl Debug for ExplorerListDirResponse
Auto Trait Implementations§
impl Freeze for ExplorerListDirResponse
impl RefUnwindSafe for ExplorerListDirResponse
impl Send for ExplorerListDirResponse
impl Sync for ExplorerListDirResponse
impl Unpin for ExplorerListDirResponse
impl UnwindSafe for ExplorerListDirResponse
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