pub enum AppServerCommand {
Standalone {
executable: PathBuf,
},
CodexCli {
executable: PathBuf,
},
}Expand description
Command used to launch the app-server that backs the browser UI.
Variants§
Standalone
Re-execute the standalone web binary in its hidden app-server mode.
CodexCli
Re-execute the full Codex CLI using its public app-server subcommand.
Trait Implementations§
Source§impl Clone for AppServerCommand
impl Clone for AppServerCommand
Source§fn clone(&self) -> AppServerCommand
fn clone(&self) -> AppServerCommand
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 AppServerCommand
impl Debug for AppServerCommand
impl Eq for AppServerCommand
Source§impl PartialEq for AppServerCommand
impl PartialEq for AppServerCommand
impl StructuralPartialEq for AppServerCommand
Auto Trait Implementations§
impl Freeze for AppServerCommand
impl RefUnwindSafe for AppServerCommand
impl Send for AppServerCommand
impl Sync for AppServerCommand
impl Unpin for AppServerCommand
impl UnsafeUnpin for AppServerCommand
impl UnwindSafe for AppServerCommand
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.