pub struct AppServerProviderConfig {
pub codex_model: Option<String>,
pub cwd: PathBuf,
pub image_limits: ImageLimits,
}Expand description
App-server image provider settings.
Fields§
§codex_model: Option<String>Optional Codex chat model used to orchestrate the image tool.
cwd: PathBufWorking directory visible to Codex.
image_limits: ImageLimitsLimits used to verify returned base64 images.
Trait Implementations§
Source§impl Clone for AppServerProviderConfig
impl Clone for AppServerProviderConfig
Source§fn clone(&self) -> AppServerProviderConfig
fn clone(&self) -> AppServerProviderConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AppServerProviderConfig
impl RefUnwindSafe for AppServerProviderConfig
impl Send for AppServerProviderConfig
impl Sync for AppServerProviderConfig
impl Unpin for AppServerProviderConfig
impl UnsafeUnpin for AppServerProviderConfig
impl UnwindSafe for AppServerProviderConfig
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