pub struct LaunchBundleRequest {
pub agent: Option<String>,
pub model: Option<String>,
pub harness: Option<String>,
pub effort: Option<String>,
pub approval: Option<String>,
pub sandbox: Option<String>,
pub extra_skills: Vec<String>,
pub models_refresh: ModelsRefreshControl,
}Fields§
§agent: Option<String>§model: Option<String>§harness: Option<String>§effort: Option<String>§approval: Option<String>§sandbox: Option<String>§extra_skills: Vec<String>§models_refresh: ModelsRefreshControlAuto Trait Implementations§
impl Freeze for LaunchBundleRequest
impl RefUnwindSafe for LaunchBundleRequest
impl Send for LaunchBundleRequest
impl Sync for LaunchBundleRequest
impl Unpin for LaunchBundleRequest
impl UnsafeUnpin for LaunchBundleRequest
impl UnwindSafe for LaunchBundleRequest
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more