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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
use crate::scenario_format::{
interpret_trait::{InterpretableFrom, InterpreterContext, IntoRaw},
value_interpreter::interpret_string,
};
use std::{
cmp::{Ord, Ordering},
fmt,
};
#[derive(Clone, Debug)]
pub struct BytesKey {
pub value: Vec<u8>,
pub original: String,
}
impl From<Vec<u8>> for BytesKey {
fn from(v: Vec<u8>) -> Self {
BytesKey {
value: v,
original: String::default(),
}
}
}
impl IntoRaw<String> for BytesKey {
fn into_raw(self) -> String {
self.original
}
}
impl PartialEq for BytesKey {
fn eq(&self, other: &Self) -> bool {
self.value == other.value
}
}
impl Eq for BytesKey {}
impl PartialOrd for BytesKey {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
self.value.partial_cmp(&other.value)
}
}
impl Ord for BytesKey {
fn cmp(&self, other: &Self) -> Ordering {
self.value.cmp(&other.value)
}
}
impl InterpretableFrom<&str> for BytesKey {
fn interpret_from(from: &str, context: &InterpreterContext) -> Self {
let bytes = interpret_string(from, context);
BytesKey {
value: bytes,
original: from.to_string(),
}
}
}
impl InterpretableFrom<String> for BytesKey {
fn interpret_from(from: String, context: &InterpreterContext) -> Self {
let bytes = interpret_string(&from, context);
BytesKey {
value: bytes,
original: from,
}
}
}
impl From<&str> for BytesKey {
fn from(from: &str) -> Self {
Self::interpret_from(from, &InterpreterContext::default())
}
}
impl fmt::Display for BytesKey {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
self.original.fmt(f)
}
}