pub trait Store {
    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§

Retrieve the flag with key flag_key.

Retrieve the segment with key segment_key.

Implementors§