about summary refs log blame commit diff
path: root/tvix/eval/src/value/string.rs
blob: 47661e03add4119a469209fcf7718640bd06103e (plain) (tree)
1
2
3
4
5
6
7
8
9
10




                                                                   
                                                             



                         


                                                                        









                                                   

     
 














                                                       

     
use std::fmt::Display;

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

#[derive(Clone, Debug, Hash, PartialEq, Eq, PartialOrd, Ord)]
pub enum NixString {
    Static(&'static str),
    Heap(String),
}

impl Display for NixString {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            NixString::Static(s) => f.write_str(s),
            NixString::Heap(s) => f.write_str(s),
        }
    }
}

impl From<&'static str> for NixString {
    fn from(s: &'static str) -> Self {
        NixString::Static(s)
    }
}

impl From<String> for NixString {
    fn from(s: String) -> Self {
        NixString::Heap(s)
    }
}

impl NixString {
    pub const NAME: Self = NixString::Static("name");
    pub const VALUE: Self = NixString::Static("value");

    pub fn as_str(&self) -> &str {
        match self {
            NixString::Static(s) => s,
            NixString::Heap(s) => s,
        }
    }
}