pub enum Reach {
Acp(PathBuf),
Cli(PathBuf),
Scv(PathBuf),
Missing(String),
}Expand description
How SCV reaches an agent, decided from its adapter settings and what is
installed; the agent tool and scv agents check decide the same way.
Variants§
Acp(PathBuf)
Its Agent Client Protocol server.
Cli(PathBuf)
Its CLI, once per turn.
Scv(PathBuf)
A nested scv server --stdio.
Missing(String)
Not installed: the named command resolves nowhere, so the agent is not offered.
Trait Implementations§
impl Eq for Reach
impl StructuralPartialEq for Reach
Auto Trait Implementations§
impl Freeze for Reach
impl RefUnwindSafe for Reach
impl Send for Reach
impl Sync for Reach
impl Unpin for Reach
impl UnsafeUnpin for Reach
impl UnwindSafe for Reach
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