pub struct RemoteConfigCondition {
pub name: String,
pub expression: String,
pub tag_color: Option<String>,
}Expand description
A condition that can be used to target specific users.
Fields§
§name: StringThe name of the condition.
expression: StringThe logic expression for the condition.
tag_color: Option<String>The color associated with the condition (for the console).
Trait Implementations§
Source§impl Debug for RemoteConfigCondition
impl Debug for RemoteConfigCondition
Source§impl<'de> Deserialize<'de> for RemoteConfigCondition
impl<'de> Deserialize<'de> for RemoteConfigCondition
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 RemoteConfigCondition
impl PartialEq for RemoteConfigCondition
Source§impl Serialize for RemoteConfigCondition
impl Serialize for RemoteConfigCondition
impl Eq for RemoteConfigCondition
impl StructuralPartialEq for RemoteConfigCondition
Auto Trait Implementations§
impl Freeze for RemoteConfigCondition
impl RefUnwindSafe for RemoteConfigCondition
impl Send for RemoteConfigCondition
impl Sync for RemoteConfigCondition
impl Unpin for RemoteConfigCondition
impl UnwindSafe for RemoteConfigCondition
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
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.