Struct launchdarkly_server_sdk::FlagDetail
source · pub struct FlagDetail { /* private fields */ }Expand description
FlagDetail is a snapshot of the state of multiple feature flags with regard to a specific user. This is the return type of crate::Client::all_flags_detail.
Serializing this object to JSON will produce the appropriate data structure for bootstrapping the LaunchDarkly JavaScript client.
Implementations
sourceimpl FlagDetail
impl FlagDetail
sourcepub fn populate(
&mut self,
store: &dyn DataStore,
user: &User,
config: FlagDetailConfig
)
pub fn populate(
&mut self,
store: &dyn DataStore,
user: &User,
config: FlagDetailConfig
)
Populate the FlagDetail struct with the results of every flag found within the provided store, evaluated for the specified user.
Trait Implementations
sourceimpl Clone for FlagDetail
impl Clone for FlagDetail
sourcefn clone(&self) -> FlagDetail
fn clone(&self) -> FlagDetail
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for FlagDetail
impl Debug for FlagDetail
sourceimpl Serialize for FlagDetail
impl Serialize for FlagDetail
Auto Trait Implementations
impl RefUnwindSafe for FlagDetail
impl Send for FlagDetail
impl Sync for FlagDetail
impl Unpin for FlagDetail
impl UnwindSafe for FlagDetail
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
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