pub struct RemoteConfigParameterGroup {
pub description: Option<String>,
pub parameters: HashMap<String, RemoteConfigParameter>,
}Expand description
A group of parameters.
Fields§
§description: Option<String>A description for the group.
parameters: HashMap<String, RemoteConfigParameter>The parameters in the group.
Trait Implementations§
Source§impl Debug for RemoteConfigParameterGroup
impl Debug for RemoteConfigParameterGroup
Source§impl<'de> Deserialize<'de> for RemoteConfigParameterGroup
impl<'de> Deserialize<'de> for RemoteConfigParameterGroup
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
impl StructuralPartialEq for RemoteConfigParameterGroup
Auto Trait Implementations§
impl Freeze for RemoteConfigParameterGroup
impl RefUnwindSafe for RemoteConfigParameterGroup
impl Send for RemoteConfigParameterGroup
impl Sync for RemoteConfigParameterGroup
impl Unpin for RemoteConfigParameterGroup
impl UnwindSafe for RemoteConfigParameterGroup
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