1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
use alloc::string::String;
use serde::{Deserialize, Serialize};
#[derive(PartialEq, Eq, Debug, Clone, Serialize, Deserialize)]
pub struct Conditions(String);
impl Conditions {
pub fn new(conditions: &str) -> Self {
Self(conditions.into())
}
}
impl AsRef<str> for Conditions {
fn as_ref(&self) -> &str {
self.0.as_ref()
}
}
impl From<String> for Conditions {
fn from(source: String) -> Self {
Self(source)
}
}
#[derive(PartialEq, Eq, Debug, Clone, Serialize, Deserialize)]
pub struct Context(String);
impl Context {
pub fn new(context: &str) -> Self {
Self(context.into())
}
}
impl AsRef<str> for Context {
fn as_ref(&self) -> &str {
self.0.as_ref()
}
}
impl From<String> for Context {
fn from(source: String) -> Self {
Self(source)
}
}