about summary refs log tree commit diff
path: root/tvix/eval/src/value/string.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/eval/src/value/string.rs')
-rw-r--r--tvix/eval/src/value/string.rs13
1 files changed, 13 insertions, 0 deletions
diff --git a/tvix/eval/src/value/string.rs b/tvix/eval/src/value/string.rs
new file mode 100644
index 0000000000..c123fc3ee1
--- /dev/null
+++ b/tvix/eval/src/value/string.rs
@@ -0,0 +1,13 @@
+use std::fmt::Display;
+
+/// This module implements Nix language strings and their different
+/// backing implementations.
+
+#[derive(Debug, Hash, PartialEq)]
+pub struct NixString(String);
+
+impl Display for NixString {
+    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
+        f.write_str(self.0.as_str())
+    }
+}