(value: CelMapKey)
| 93 | |
| 94 | impl From<CelMapKey> for Key { |
| 95 | fn from(value: CelMapKey) -> Self { |
| 96 | match value { |
| 97 | CelMapKey::Bool(b) => b.into_inner().into(), |
| 98 | CelMapKey::Int(i) => i.into_inner().into(), |
| 99 | CelMapKey::String(s) => s.into_inner().into(), |
| 100 | CelMapKey::UInt(u) => u.into_inner().into(), |
| 101 | } |
| 102 | } |
| 103 | } |
| 104 | |
| 105 | impl From<Key> for CelMapKey { |