pub struct RemoteConfigParameter {
pub default_value: Option<RemoteConfigParameterValue>,
pub conditional_values: HashMap<String, RemoteConfigParameterValue>,
pub description: Option<String>,
}Expand description
A parameter in the Remote Config template.
Fields§
§default_value: Option<RemoteConfigParameterValue>The value to set the parameter to, if no conditions are met.
conditional_values: HashMap<String, RemoteConfigParameterValue>A map of condition names to values.
description: Option<String>A description for the parameter.
Trait Implementations§
Source§impl Debug for RemoteConfigParameter
impl Debug for RemoteConfigParameter
Source§impl<'de> Deserialize<'de> for RemoteConfigParameter
impl<'de> Deserialize<'de> for RemoteConfigParameter
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 RemoteConfigParameter
impl PartialEq for RemoteConfigParameter
Source§impl Serialize for RemoteConfigParameter
impl Serialize for RemoteConfigParameter
impl StructuralPartialEq for RemoteConfigParameter
Auto Trait Implementations§
impl Freeze for RemoteConfigParameter
impl RefUnwindSafe for RemoteConfigParameter
impl Send for RemoteConfigParameter
impl Sync for RemoteConfigParameter
impl Unpin for RemoteConfigParameter
impl UnwindSafe for RemoteConfigParameter
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