pub struct CliInfo {
pub display_name: String,
pub binary_name: String,
}Expand description
Information about an available AI CLI.
Contains the data needed to display a CLI option in interactive prompts.
Fields§
§display_name: StringHuman-readable name shown in prompts (e.g., “My Agent”).
binary_name: StringBinary name used for invocation (e.g., “my-agent”).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CliInfo
impl RefUnwindSafe for CliInfo
impl Send for CliInfo
impl Sync for CliInfo
impl Unpin for CliInfo
impl UnsafeUnpin for CliInfo
impl UnwindSafe for CliInfo
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