pub struct PrerequisiteEvent {
pub target_flag_key: String,
pub context: Context,
pub prerequisite_flag: Flag,
pub prerequisite_result: Detail<FlagValue>,
}
Expand description
A struct representing the results of an evaluation on a prerequisite flag.
Fields§
§target_flag_key: String
String representing the crate::Flag::key of the original flag being evaluated.
context: Context
The crate::Context provided during the evaluation process.
prerequisite_flag: Flag
The prerequisite crate::Flag that was evaluated.
prerequisite_result: Detail<FlagValue>
The result of calling evaluate on the PrerequisiteEvent::prerequisite_flag.