pub struct SpecsResponseFull {Show 18 fields
pub feature_gates: HashMap<String, Spec>,
pub dynamic_configs: HashMap<String, Spec>,
pub layer_configs: HashMap<String, Spec>,
pub condition_map: HashMap<String, Condition>,
pub experiment_to_layer: HashMap<String, String>,
pub has_updates: bool,
pub time: u64,
pub checksum: Option<String>,
pub default_environment: Option<String>,
pub app_id: Option<DynamicValue>,
pub sdk_keys_to_app_ids: Option<HashMap<String, DynamicValue>>,
pub hashed_sdk_keys_to_app_ids: Option<HashMap<String, DynamicValue>>,
pub diagnostics: Option<HashMap<String, f64>>,
pub param_stores: Option<HashMap<String, ParameterStore>>,
pub sdk_configs: Option<HashMap<String, DynamicValue>>,
pub cmab_configs: Option<HashMap<String, CMABConfig>>,
pub overrides: Option<HashMap<String, Vec<ConfigMapping>>>,
pub override_rules: Option<HashMap<String, Rule>>,
}
Fields§
§feature_gates: HashMap<String, Spec>
§dynamic_configs: HashMap<String, Spec>
§layer_configs: HashMap<String, Spec>
§condition_map: HashMap<String, Condition>
§experiment_to_layer: HashMap<String, String>
§has_updates: bool
§time: u64
§checksum: Option<String>
§default_environment: Option<String>
§app_id: Option<DynamicValue>
§sdk_keys_to_app_ids: Option<HashMap<String, DynamicValue>>
§hashed_sdk_keys_to_app_ids: Option<HashMap<String, DynamicValue>>
§diagnostics: Option<HashMap<String, f64>>
§param_stores: Option<HashMap<String, ParameterStore>>
§sdk_configs: Option<HashMap<String, DynamicValue>>
§cmab_configs: Option<HashMap<String, CMABConfig>>
§overrides: Option<HashMap<String, Vec<ConfigMapping>>>
§override_rules: Option<HashMap<String, Rule>>
Trait Implementations§
Source§impl Clone for SpecsResponseFull
impl Clone for SpecsResponseFull
Source§fn clone(&self) -> SpecsResponseFull
fn clone(&self) -> SpecsResponseFull
Returns a copy 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 SpecsResponseFull
impl Debug for SpecsResponseFull
Source§impl<'de> Deserialize<'de> for SpecsResponseFull
impl<'de> Deserialize<'de> for SpecsResponseFull
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 PartialEq for SpecsResponseFull
impl PartialEq for SpecsResponseFull
Source§impl Serialize for SpecsResponseFull
impl Serialize for SpecsResponseFull
impl StructuralPartialEq for SpecsResponseFull
Auto Trait Implementations§
impl !Freeze for SpecsResponseFull
impl RefUnwindSafe for SpecsResponseFull
impl Send for SpecsResponseFull
impl Sync for SpecsResponseFull
impl Unpin for SpecsResponseFull
impl UnwindSafe for SpecsResponseFull
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