pub struct EnvironmentsConfig {
pub dev: EnvironmentConfig,
pub staging: Option<EnvironmentConfig>,
pub prod: EnvironmentConfig,
}Expand description
Environment-specific configuration
Allows configuring different URLs for dev, staging, and production environments. The active environment is determined by:
MECHA10_ENVenvironment variable--envCLI flag- Default: “dev” when running
mecha10 dev, “prod” otherwise
Fields§
§dev: EnvironmentConfigDevelopment environment (local control plane)
staging: Option<EnvironmentConfig>Staging environment (optional)
prod: EnvironmentConfigProduction environment (cloud control plane)
Implementations§
Source§impl EnvironmentsConfig
impl EnvironmentsConfig
Sourcepub fn get(&self, env: &str) -> Option<&EnvironmentConfig>
pub fn get(&self, env: &str) -> Option<&EnvironmentConfig>
Get the environment config for the given environment name
Sourcepub fn current(&self) -> &EnvironmentConfig
pub fn current(&self) -> &EnvironmentConfig
Get the current environment config based on MECHA10_ENV
Sourcepub fn control_plane_url(&self) -> String
pub fn control_plane_url(&self) -> String
Get the control plane URL for the current environment
Trait Implementations§
Source§impl Clone for EnvironmentsConfig
impl Clone for EnvironmentsConfig
Source§fn clone(&self) -> EnvironmentsConfig
fn clone(&self) -> EnvironmentsConfig
Returns a duplicate of the value. Read more
1.0.0§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for EnvironmentsConfig
impl Debug for EnvironmentsConfig
Source§impl Default for EnvironmentsConfig
impl Default for EnvironmentsConfig
Source§impl<'de> Deserialize<'de> for EnvironmentsConfig
impl<'de> Deserialize<'de> for EnvironmentsConfig
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 EnvironmentsConfig
impl RefUnwindSafe for EnvironmentsConfig
impl Send for EnvironmentsConfig
impl Sync for EnvironmentsConfig
impl Unpin for EnvironmentsConfig
impl UnwindSafe for EnvironmentsConfig
Blanket Implementations§
§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§unsafe fn clone_to_uninit(&self, dest: *mut u8)
unsafe fn clone_to_uninit(&self, dest: *mut u8)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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