pub struct VTCodeConfig {Show 15 fields
pub agent: AgentConfig,
pub tools: ToolsConfig,
pub commands: CommandsConfig,
pub security: SecurityConfig,
pub ui: UiConfig,
pub pty: PtyConfig,
pub context: ContextFeaturesConfig,
pub router: RouterConfig,
pub telemetry: TelemetryConfig,
pub syntax_highlighting: SyntaxHighlightingConfig,
pub automation: AutomationConfig,
pub prompt_cache: PromptCachingConfig,
pub mcp: McpClientConfig,
pub acp: AgentClientProtocolConfig,
pub hooks: HooksConfig,
}Expand description
Main configuration structure for VTCode
Fields§
§agent: AgentConfigAgent-wide settings
tools: ToolsConfigTool execution policies
commands: CommandsConfigUnix command permissions
security: SecurityConfigSecurity settings
ui: UiConfigUI settings
pty: PtyConfigPTY settings
context: ContextFeaturesConfigContext features (e.g., Decision Ledger)
router: RouterConfigRouter configuration (dynamic model + engine selection)
telemetry: TelemetryConfigTelemetry configuration (logging, trajectory)
syntax_highlighting: SyntaxHighlightingConfigSyntax highlighting configuration
automation: AutomationConfigAutomation configuration
prompt_cache: PromptCachingConfigPrompt cache configuration (local + provider integration)
mcp: McpClientConfigModel Context Protocol configuration
acp: AgentClientProtocolConfigAgent Client Protocol configuration
hooks: HooksConfigLifecycle hooks configuration
Implementations§
Source§impl VTCodeConfig
impl VTCodeConfig
pub fn validate(&self) -> Result<()>
Sourcepub fn bootstrap_project<P: AsRef<Path>>(
workspace: P,
force: bool,
) -> Result<Vec<String>>
pub fn bootstrap_project<P: AsRef<Path>>( workspace: P, force: bool, ) -> Result<Vec<String>>
Bootstrap project with config + gitignore
Sourcepub fn bootstrap_project_with_options<P: AsRef<Path>>(
workspace: P,
force: bool,
use_home_dir: bool,
) -> Result<Vec<String>>
pub fn bootstrap_project_with_options<P: AsRef<Path>>( workspace: P, force: bool, use_home_dir: bool, ) -> Result<Vec<String>>
Bootstrap project with config + gitignore, with option to create in home directory
Sourcepub fn bootstrap_project_with_provider<P: AsRef<Path>>(
workspace: P,
force: bool,
use_home_dir: bool,
defaults_provider: &dyn ConfigDefaultsProvider,
) -> Result<Vec<String>>
pub fn bootstrap_project_with_provider<P: AsRef<Path>>( workspace: P, force: bool, use_home_dir: bool, defaults_provider: &dyn ConfigDefaultsProvider, ) -> Result<Vec<String>>
Bootstrap project files using the supplied ConfigDefaultsProvider.
Trait Implementations§
Source§impl Clone for VTCodeConfig
impl Clone for VTCodeConfig
Source§fn clone(&self) -> VTCodeConfig
fn clone(&self) -> VTCodeConfig
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 VTCodeConfig
impl Debug for VTCodeConfig
Source§impl Default for VTCodeConfig
impl Default for VTCodeConfig
Source§fn default() -> VTCodeConfig
fn default() -> VTCodeConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for VTCodeConfig
impl<'de> Deserialize<'de> for VTCodeConfig
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 JsonSchema for VTCodeConfig
impl JsonSchema for VTCodeConfig
Source§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
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 is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for VTCodeConfig
impl RefUnwindSafe for VTCodeConfig
impl Send for VTCodeConfig
impl Sync for VTCodeConfig
impl Unpin for VTCodeConfig
impl UnwindSafe for VTCodeConfig
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