feat(tvix/eval): add Value variants for strings & attrsets
Change-Id: Idebf663ab7fde3955aae50f635320f7eb6c353e8 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6087 Tested-by: BuildkiteCI Reviewed-by: grfn <grfn@gws.fyi>
This commit is contained in:
parent
ba03226e51
commit
2ed38a7cdb
4 changed files with 21 additions and 6 deletions
|
|
@ -3,7 +3,7 @@ use std::fmt::Display;
|
|||
/// This module implements Nix language strings and their different
|
||||
/// backing implementations.
|
||||
|
||||
#[derive(Debug, Hash, PartialEq)]
|
||||
#[derive(Clone, Debug, Hash, PartialEq)]
|
||||
pub struct NixString(String);
|
||||
|
||||
impl Display for NixString {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue