pub struct ProxyConfigV2 {
pub version: u32,
pub codex: ServiceViewV2,
pub claude: ServiceViewV2,
pub retry: RetryConfig,
pub notify: NotifyConfig,
pub default_service: Option<ServiceKind>,
pub ui: UiConfig,
}Fields§
§version: u32§codex: ServiceViewV2§claude: ServiceViewV2§retry: RetryConfig§notify: NotifyConfig§default_service: Option<ServiceKind>§ui: UiConfigTrait Implementations§
Source§impl Clone for ProxyConfigV2
impl Clone for ProxyConfigV2
Source§fn clone(&self) -> ProxyConfigV2
fn clone(&self) -> ProxyConfigV2
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 ProxyConfigV2
impl Debug for ProxyConfigV2
Source§impl Default for ProxyConfigV2
impl Default for ProxyConfigV2
Source§impl<'de> Deserialize<'de> for ProxyConfigV2
impl<'de> Deserialize<'de> for ProxyConfigV2
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
Auto Trait Implementations§
impl Freeze for ProxyConfigV2
impl RefUnwindSafe for ProxyConfigV2
impl Send for ProxyConfigV2
impl Sync for ProxyConfigV2
impl Unpin for ProxyConfigV2
impl UnsafeUnpin for ProxyConfigV2
impl UnwindSafe for ProxyConfigV2
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