/// This module implements Nix lists. use std::fmt::Display; use super::Value; #[derive(Clone, Debug, PartialEq)] pub struct NixList(pub Vec); impl Display for NixList { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { f.write_str("[ ")?; for v in &self.0 { v.fmt(f)?; f.write_str(" ")?; } f.write_str("]") } }