pub struct RunnerInfo {
pub binary: String,
pub extra_args: Vec<String>,
pub no_persist_flags: Vec<String>,
pub thinking_flags: BTreeMap<i32, Vec<String>>,
pub show_thinking_flags: BTreeMap<bool, Vec<String>>,
pub yolo_flags: Vec<String>,
pub provider_flag: String,
pub model_flag: String,
pub agent_flag: String,
pub prompt_flag: String,
}Fields§
§binary: String§extra_args: Vec<String>§no_persist_flags: Vec<String>§thinking_flags: BTreeMap<i32, Vec<String>>§show_thinking_flags: BTreeMap<bool, Vec<String>>§yolo_flags: Vec<String>§provider_flag: String§model_flag: String§agent_flag: String§prompt_flag: StringTrait Implementations§
Source§impl Clone for RunnerInfo
impl Clone for RunnerInfo
Source§fn clone(&self) -> RunnerInfo
fn clone(&self) -> RunnerInfo
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for RunnerInfo
impl RefUnwindSafe for RunnerInfo
impl Send for RunnerInfo
impl Sync for RunnerInfo
impl Unpin for RunnerInfo
impl UnsafeUnpin for RunnerInfo
impl UnwindSafe for RunnerInfo
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