pub struct WorkspaceSnapshot {
pub root: PathBuf,
pub project_kind: ProjectKind,
pub project_kinds: Vec<ProjectKind>,
pub visible_tree: Vec<TreeEntry>,
pub selection: Option<PathBuf>,
}Expand description
What the agent is told about the workspace.
Fields§
§root: PathBuf§project_kind: ProjectKind§project_kinds: Vec<ProjectKind>Every detected project kind, matching the root’s marker-priority order.
visible_tree: Vec<TreeEntry>The currently visible tree — loaded, expanded, ignore-filtered.
selection: Option<PathBuf>What the human currently has selected, relative to the root.
Implementations§
Source§impl WorkspaceSnapshot
impl WorkspaceSnapshot
Trait Implementations§
Source§impl Clone for WorkspaceSnapshot
impl Clone for WorkspaceSnapshot
Source§fn clone(&self) -> WorkspaceSnapshot
fn clone(&self) -> WorkspaceSnapshot
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 WorkspaceSnapshot
impl Debug for WorkspaceSnapshot
impl Eq for WorkspaceSnapshot
Source§impl PartialEq for WorkspaceSnapshot
impl PartialEq for WorkspaceSnapshot
impl StructuralPartialEq for WorkspaceSnapshot
Auto Trait Implementations§
impl Freeze for WorkspaceSnapshot
impl RefUnwindSafe for WorkspaceSnapshot
impl Send for WorkspaceSnapshot
impl Sync for WorkspaceSnapshot
impl Unpin for WorkspaceSnapshot
impl UnsafeUnpin for WorkspaceSnapshot
impl UnwindSafe for WorkspaceSnapshot
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.