pub struct RragSystemConfig {
pub name: String,
pub version: String,
pub environment: String,
pub components: ComponentConfigs,
pub performance: PerformanceConfig,
pub monitoring: MonitoringConfig,
pub features: FeatureFlags,
}Expand description
System configuration for RRAG
Fields§
§name: StringSystem name/identifier
version: StringVersion information
environment: StringEnvironment (dev, staging, prod)
components: ComponentConfigsComponent configurations
performance: PerformanceConfigPerformance settings
monitoring: MonitoringConfigMonitoring configuration
features: FeatureFlagsFeature flags
Trait Implementations§
Source§impl Clone for RragSystemConfig
impl Clone for RragSystemConfig
Source§fn clone(&self) -> RragSystemConfig
fn clone(&self) -> RragSystemConfig
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 RragSystemConfig
impl Debug for RragSystemConfig
Source§impl Default for RragSystemConfig
impl Default for RragSystemConfig
Source§impl<'de> Deserialize<'de> for RragSystemConfig
impl<'de> Deserialize<'de> for RragSystemConfig
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 RragSystemConfig
impl RefUnwindSafe for RragSystemConfig
impl Send for RragSystemConfig
impl Sync for RragSystemConfig
impl Unpin for RragSystemConfig
impl UnwindSafe for RragSystemConfig
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