blob: 531bcf547b0b30e59fffd270e271770d18131d25 (
plain) (
tree)
|
|
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())
}
}
|