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()) } }