pub struct Settings {Show 23 fields
pub selected_model: SelectedModelSettings,
pub openai_codex: OpenAiCodexSettings,
pub openai_responses: OpenAiResponsesSettings,
pub no_color: Option<bool>,
pub anthropic_cache_ttl: Option<AnthropicCacheTtl>,
pub file_autocomplete_respects_gitignore: bool,
pub context: Option<ContextBudget>,
pub session_titles: SessionTitleSettings,
pub compaction: CompactionSettings,
pub tools: ToolSettings,
pub subagents: SubagentsSettings,
pub models: ModelsSettings,
pub hooks: HookSettings,
pub instructions: InstructionsSettings,
pub skills: SkillsSettings,
pub custom_providers: BTreeMap<String, CustomProviderConfig>,
pub mcp_servers: McpServersSettings,
pub lsp: LspSettings,
pub integrations: IntegrationsSettings,
pub tui: TuiSettings,
pub provider_stream: ProviderStreamSettings,
pub ttsr: TtsrSettings,
pub selected_primary_agent: Option<String>,
}Fields§
§selected_model: SelectedModelSettings§openai_codex: OpenAiCodexSettings§openai_responses: OpenAiResponsesSettings§no_color: Option<bool>§anthropic_cache_ttl: Option<AnthropicCacheTtl>§file_autocomplete_respects_gitignore: bool§context: Option<ContextBudget>§session_titles: SessionTitleSettings§compaction: CompactionSettings§tools: ToolSettings§subagents: SubagentsSettings§models: ModelsSettings§hooks: HookSettings§instructions: InstructionsSettings§skills: SkillsSettings§custom_providers: BTreeMap<String, CustomProviderConfig>§mcp_servers: McpServersSettings§lsp: LspSettings§integrations: IntegrationsSettings§tui: TuiSettings§provider_stream: ProviderStreamSettings§ttsr: TtsrSettings§selected_primary_agent: Option<String>Trait Implementations§
Source§impl<'de> Deserialize<'de> for Settings
impl<'de> Deserialize<'de> for Settings
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
impl Eq for Settings
Source§impl JsonSchema for Settings
impl JsonSchema for Settings
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreimpl StructuralPartialEq for Settings
Auto Trait Implementations§
impl Freeze for Settings
impl RefUnwindSafe for Settings
impl Send for Settings
impl Sync for Settings
impl Unpin for Settings
impl UnsafeUnpin for Settings
impl UnwindSafe for Settings
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more