eppo_core/
sdk_metadata.rs

1/// SDK metadata that is used in a couple of places:
2/// - added to assignment and bandit events
3/// - sent in query when requesting config
4#[derive(Debug, Clone, Copy, PartialEq, Eq)]
5pub struct SdkMetadata {
6    /// SDK name. (Usually, language name.)
7    pub name: &'static str,
8    /// Version of SDK.
9    pub version: &'static str,
10}