Trait launchdarkly_server_sdk_evaluation::Store

source ·
pub trait Store {
    // Required methods
    fn flag(&self, flag_key: &str) -> Option<Flag>;
    fn segment(&self, segment_key: &str) -> Option<Segment>;
}
Expand description

Store is an interface for a data store that holds feature flags and related data received by the SDK.

Ordinarily, the only implementations of this interface are the default in-memory implementation, which holds references to actual SDK data model objects.

Required Methods§

source

fn flag(&self, flag_key: &str) -> Option<Flag>

Retrieve the flag with key flag_key.

source

fn segment(&self, segment_key: &str) -> Option<Segment>

Retrieve the segment with key segment_key.

Implementors§