pub struct AiAgent {
pub id: String,
pub label: String,
pub flavor: String,
pub description: String,
pub installed: bool,
pub running: i64,
}Expand description
A coding agent bsdkrun can sandbox.
Each runs in a disposable microVM with a persistent login, a shared skills store, and only the folder you choose to share.
Fields§
§id: StringStable id — claude, codex, … Also the CLI alias.
label: String§flavor: StringThe catalog flavor that installs it.
description: String§installed: boolIts flavor is provisioned, so a sandbox boots in a second. False means the first launch installs a toolchain — minutes.
running: i64Implementations§
Trait Implementations§
impl StructuralPartialEq for AiAgent
Auto Trait Implementations§
impl Freeze for AiAgent
impl RefUnwindSafe for AiAgent
impl Send for AiAgent
impl Sync for AiAgent
impl Unpin for AiAgent
impl UnsafeUnpin for AiAgent
impl UnwindSafe for AiAgent
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