diff options
author | Ilan Joselevich <personal@ilanjoselevich.com> | 2024-08-03T21·48+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-08-09T14·03+0000 |
commit | c554c1c1c05555528264cd8ceaa2f1e39a2c4d19 (patch) | |
tree | e329cbf66eca8cbe4714b67f8132255b44a3c1cb /tvix/eval/src/io.rs | |
parent | 591c5ffe5347f05b98398f9bdaaa611f08970b8f (diff) |
feat(tvix/eval): Implement Display for io::FileType r/8463
In newer versions of Nix there's a builtins.readFileType builtin, we should try to avoid duplicating the enum -> string conversion by implementating Display before we implement builtins.readFileType. Change-Id: I579e95949a76eb33d2e7bda0000ed84859df765e Reviewed-on: https://cl.tvl.fyi/c/depot/+/12129 Reviewed-by: flokli <flokli@flokli.de> Autosubmit: Ilan Joselevich <personal@ilanjoselevich.com> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/eval/src/io.rs')
-rw-r--r-- | tvix/eval/src/io.rs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tvix/eval/src/io.rs b/tvix/eval/src/io.rs index abe0e0518303..e4bad7b11ce0 100644 --- a/tvix/eval/src/io.rs +++ b/tvix/eval/src/io.rs @@ -35,6 +35,19 @@ pub enum FileType { Unknown, } +impl std::fmt::Display for FileType { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + let type_as_str = match &self { + FileType::Directory => "directory", + FileType::Regular => "regular", + FileType::Symlink => "symlink", + FileType::Unknown => "unknown", + }; + + write!(f, "{}", type_as_str) + } +} + /// Represents all possible filesystem interactions that exist in the Nix /// language, and that need to be executed somehow. /// |