pub struct WebOptions {
pub port: u16,
pub open_browser: bool,
pub cwd: Option<PathBuf>,
pub app_server_command: AppServerCommand,
pub config_overrides: Vec<String>,
pub strict_config: bool,
pub reset_token: bool,
pub daemon_config: Option<PathBuf>,
}Expand description
Settings supplied by the codex web command.
Fields§
§port: u16§open_browser: bool§cwd: Option<PathBuf>§app_server_command: AppServerCommand§config_overrides: Vec<String>§strict_config: bool§reset_token: bool§daemon_config: Option<PathBuf>Trait Implementations§
Source§impl Clone for WebOptions
impl Clone for WebOptions
Source§fn clone(&self) -> WebOptions
fn clone(&self) -> WebOptions
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 moreSource§impl Debug for WebOptions
impl Debug for WebOptions
impl Eq for WebOptions
Source§impl PartialEq for WebOptions
impl PartialEq for WebOptions
impl StructuralPartialEq for WebOptions
Auto Trait Implementations§
impl Freeze for WebOptions
impl RefUnwindSafe for WebOptions
impl Send for WebOptions
impl Sync for WebOptions
impl Unpin for WebOptions
impl UnsafeUnpin for WebOptions
impl UnwindSafe for WebOptions
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
impl<T> CloneAny for T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.