Struct launchdarkly_server_sdk::Flag
source · [−]pub struct Flag {
pub key: String,
pub version: u64,
pub track_events: bool,
pub track_events_fallthrough: bool,
pub debug_events_until_date: Option<u64>,
/* private fields */
}
Expand description
Flag describes an individual feature flag.
Fields
key: String
The unique string key of the feature flag.
version: u64
Version is an integer that is incremented by LaunchDarkly every time the configuration of the flag is changed.
track_events: bool
Used internally by the SDK analytics event system.
This field is true if the current LaunchDarkly account has data export enabled, and has turned on the “send detailed event information for this flag” option for this flag. This tells the SDK to send full event data for each flag evaluation, rather than only aggregate data in a summary event.
The launchdarkly-server-sdk-evaluation crate does not implement that behavior; it is only in the data model for use by the SDK.
track_events_fallthrough: bool
Used internally by the SDK analytics event system.
This field is true if the current LaunchDarkly account has experimentation enabled, has associated this flag with an experiment, and has enabled “default rule” for the experiment. This tells the SDK to send full event data for any evaluation where this flag had targeting turned on but the user did not match any targets or rules.
The launchdarkly-server-sdk-evaluation package does not implement that behavior; it is only in the data model for use by the SDK.
debug_events_until_date: Option<u64>
Used internally by the SDK analytics event system.
This field is non-zero if debugging for this flag has been turned on temporarily in the LaunchDarkly dashboard. Debugging always is for a limited time, so the field specifies a Unix millisecond timestamp when this mode should expire. Until then, the SDK will send full event data for each evaluation of this flag.
The launchdarkly-server-sdk-evaluation package does not implement that behavior; it is only in the data model for use by the SDK.
Implementations
sourceimpl Flag
impl Flag
sourcepub fn variation(&self, index: isize, reason: Reason) -> Detail<&FlagValue>
pub fn variation(&self, index: isize, reason: Reason) -> Detail<&FlagValue>
Generate a crate::Detail response with the given variation and reason.
sourcepub fn off_value(&self, reason: Reason) -> Detail<&FlagValue>
pub fn off_value(&self, reason: Reason) -> Detail<&FlagValue>
Generate a crate::Detail response using the flag’s off variation.
If a flag has an off_variation specified, a crate::Detail will be created using that variation. If the flag does not have an off_variation specified, an empty crate::Detail will be returned. See crate::Detail::empty.
sourcepub fn using_environment_id(&self) -> bool
pub fn using_environment_id(&self) -> bool
Indicates that this flag is available to clients using the environment id to identify an environment (includes client-side javascript clients).
sourcepub fn using_mobile_key(&self) -> bool
pub fn using_mobile_key(&self) -> bool
Indicates that this flag is available to clients using the mobile key for authorization (includes most desktop and mobile clients).
sourcepub fn is_experimentation_enabled(&self, reason: &Reason) -> bool
pub fn is_experimentation_enabled(&self, reason: &Reason) -> bool
Returns true if, based on the crate::Reason returned by the flag evaluation, an event for that evaluation should have full tracking enabled and always report the reason even if the application didn’t explicitly request this. For instance, this is true if a rule was matched that had tracking enabled for that specific rule.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Flag
impl<'de> Deserialize<'de> for Flag
sourcefn deserialize<__D>(
__deserializer: __D
) -> Result<Flag, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<Flag, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Serialize for Flag
impl Serialize for Flag
sourcefn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for Flag
impl Send for Flag
impl Sync for Flag
impl Unpin for Flag
impl UnwindSafe for Flag
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more