about summary refs log tree commit diff
path: root/tvix/eval/src/value/string.rs
blob: 531bcf547b0b30e59fffd270e271770d18131d25 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
use std::fmt::Display;

/// This module implements Nix language strings and their different
/// backing implementations.

#[derive(Clone, Debug, Hash, PartialEq, Eq, PartialOrd, Ord)]
pub struct NixString(pub String);

impl Display for NixString {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.write_str(self.0.as_str())
    }
}