Skip to main content

stylex_structures/
pair.rs

1#[derive(Debug, PartialEq, Clone, Hash)]
2
3pub struct Pair {
4  pub key: String,
5  pub value: String,
6}
7
8impl Pair {
9  pub fn new(key: String, value: String) -> Self {
10    Self { key, value }
11  }
12}