#[non_exhaustive]pub struct ForgeConfig {Show 18 fields
pub project: ProjectConfig,
pub database: DatabaseConfig,
pub node: NodeConfig,
pub gateway: GatewayConfig,
pub function: FunctionConfig,
pub worker: WorkerConfig,
pub workflow: WorkflowConfig,
pub cron: CronConfig,
pub daemon: DaemonConfig,
pub cluster: ClusterConfig,
pub security: SecurityConfig,
pub auth: AuthConfig,
pub observability: ObservabilityConfig,
pub mcp: McpConfig,
pub signals: SignalsConfig,
pub rate_limit: RateLimitSettings,
pub realtime: RealtimeConfig,
pub email: EmailConfig,
}Expand description
Root configuration. Loaded from forge.toml with ${ENV_VAR} / ${VAR-default}
substitution. Only database.url is required.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.project: ProjectConfig§database: DatabaseConfig§node: NodeConfig§gateway: GatewayConfig§function: FunctionConfig§worker: WorkerConfig§workflow: WorkflowConfig§cron: CronConfig§daemon: DaemonConfig§cluster: ClusterConfig§security: SecurityConfig§auth: AuthConfig§observability: ObservabilityConfig§mcp: McpConfig§signals: SignalsConfig§rate_limit: RateLimitSettings§realtime: RealtimeConfig§email: EmailConfigImplementations§
Source§impl ForgeConfig
impl ForgeConfig
Sourcepub fn parse_toml(content: &str) -> Result<Self>
pub fn parse_toml(content: &str) -> Result<Self>
Parse from a TOML string.
Sourcepub fn default_with_database_url(url: &str) -> Self
pub fn default_with_database_url(url: &str) -> Self
Construct with defaults and the given database URL.
Trait Implementations§
Source§impl Clone for ForgeConfig
impl Clone for ForgeConfig
Source§fn clone(&self) -> ForgeConfig
fn clone(&self) -> ForgeConfig
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 ForgeConfig
impl Debug for ForgeConfig
Source§impl<'de> Deserialize<'de> for ForgeConfig
impl<'de> Deserialize<'de> for ForgeConfig
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 ForgeConfig
impl RefUnwindSafe for ForgeConfig
impl Send for ForgeConfig
impl Sync for ForgeConfig
impl Unpin for ForgeConfig
impl UnsafeUnpin for ForgeConfig
impl UnwindSafe for ForgeConfig
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,
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