pub struct LocalBins {
pub dir: PathBuf,
pub cli: PathBuf,
pub tui: PathBuf,
pub status_api: PathBuf,
pub mcp: Option<PathBuf>,
}Expand description
Paths to box binaries after cache extract or --bin-dir.
Fields§
§dir: PathBufDirectory that contains the binaries (source or install layout).
cli: PathBufCLI apply agent.
tui: PathBufTUI binary.
status_api: PathBufStatus API binary.
mcp: Option<PathBuf>MCP server binary when present in the Release / bin dir.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LocalBins
impl RefUnwindSafe for LocalBins
impl Send for LocalBins
impl Sync for LocalBins
impl Unpin for LocalBins
impl UnsafeUnpin for LocalBins
impl UnwindSafe for LocalBins
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