pub struct InitializeResponse {
pub feature_gates: HashMap<String, GateEvaluation>,
pub dynamic_configs: HashMap<String, AnyConfigEvaluation>,
pub layer_configs: HashMap<String, LayerEvaluation>,
pub time: u64,
pub has_updates: bool,
pub hash_used: String,
pub user: StatsigUserLoggable,
pub sdk_info: HashMap<String, String>,
pub sdk_params: HashMap<String, String>,
pub evaluated_keys: HashMap<String, String>,
}
Fields§
§feature_gates: HashMap<String, GateEvaluation>
§dynamic_configs: HashMap<String, AnyConfigEvaluation>
§layer_configs: HashMap<String, LayerEvaluation>
§time: u64
§has_updates: bool
§hash_used: String
§user: StatsigUserLoggable
§sdk_info: HashMap<String, String>
§sdk_params: HashMap<String, String>
§evaluated_keys: HashMap<String, String>
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for InitializeResponse
impl<'de> Deserialize<'de> for InitializeResponse
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 InitializeResponse
impl RefUnwindSafe for InitializeResponse
impl Send for InitializeResponse
impl Sync for InitializeResponse
impl Unpin for InitializeResponse
impl UnwindSafe for InitializeResponse
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