pub struct ResolvedConfig {
pub bind: SocketAddr,
pub enable_enhance_flow: bool,
pub blueprint_ref_base: Option<PathBuf>,
pub git_store_path: Option<PathBuf>,
pub issue_store_path: Option<PathBuf>,
pub enhance_setting_store_path: Option<PathBuf>,
pub enhance_log_store_path: Option<PathBuf>,
pub output_store_path: Option<PathBuf>,
pub seed_blueprint_id: String,
pub default_agent_kind: Option<String>,
pub token_secret: Option<String>,
}Expand description
Fully resolved config — every field has the built-in default applied.
Fields§
§bind: SocketAddrParsed listen address for the server to bind to.
enable_enhance_flow: boolWhether the enhance flow (Lua + AgentBlock factories) is baked into the registry.
blueprint_ref_base: Option<PathBuf>Base dir for $file / $agent_md ref expansion in seeded Blueprints.
git_store_path: Option<PathBuf>Root path for the git-backed BlueprintStore (when using the git2 backend).
issue_store_path: Option<PathBuf>Path to the SQLite database file backing the IssueStore. None = fall
back to InMemoryIssueStore (process-volatile).
enhance_setting_store_path: Option<PathBuf>Path to the SQLite database file backing the EnhanceSettingStore.
None = InMemoryEnhanceSettingStore.
enhance_log_store_path: Option<PathBuf>Path to the SQLite database file backing the EnhanceLogStore.
None = InMemoryEnhanceLogStore.
output_store_path: Option<PathBuf>Path to the SQLite database file backing the OutputStore.
None = InMemoryOutputStore.
seed_blueprint_id: StringSeed blueprint id used in combined-mode default routing.
default_agent_kind: Option<String>snake_case AgentKind literal, unvalidated. None = caller applies
the schema-impl Default (Operator).
token_secret: Option<String>Shared secret used to verify/sign CapToken HMAC signatures.
Trait Implementations§
Source§impl Clone for ResolvedConfig
impl Clone for ResolvedConfig
Source§fn clone(&self) -> ResolvedConfig
fn clone(&self) -> ResolvedConfig
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreSource§impl Debug for ResolvedConfig
impl Debug for ResolvedConfig
Source§impl Default for ResolvedConfig
impl Default for ResolvedConfig
Source§impl PartialEq for ResolvedConfig
impl PartialEq for ResolvedConfig
Source§fn eq(&self, other: &ResolvedConfig) -> bool
fn eq(&self, other: &ResolvedConfig) -> bool
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ResolvedConfig
Auto Trait Implementations§
impl Freeze for ResolvedConfig
impl RefUnwindSafe for ResolvedConfig
impl Send for ResolvedConfig
impl Sync for ResolvedConfig
impl Unpin for ResolvedConfig
impl UnsafeUnpin for ResolvedConfig
impl UnwindSafe for ResolvedConfig
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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>
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>
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