pub enum ExecutorType {
ClaudeCode,
Codex,
}Expand description
Provider identifier used throughout the unified SDK.
This enum is used in profile resolution, session metadata, and executor selection logic.
Variants§
Trait Implementations§
Source§impl Clone for ExecutorType
impl Clone for ExecutorType
Source§fn clone(&self) -> ExecutorType
fn clone(&self) -> ExecutorType
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 moreSource§impl Debug for ExecutorType
impl Debug for ExecutorType
Source§impl<'de> Deserialize<'de> for ExecutorType
impl<'de> Deserialize<'de> for ExecutorType
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for ExecutorType
impl Hash for ExecutorType
Source§impl PartialEq for ExecutorType
impl PartialEq for ExecutorType
Source§impl Serialize for ExecutorType
impl Serialize for ExecutorType
impl Copy for ExecutorType
impl Eq for ExecutorType
impl StructuralPartialEq for ExecutorType
Auto Trait Implementations§
impl Freeze for ExecutorType
impl RefUnwindSafe for ExecutorType
impl Send for ExecutorType
impl Sync for ExecutorType
impl Unpin for ExecutorType
impl UnsafeUnpin for ExecutorType
impl UnwindSafe for ExecutorType
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