ninja_files_data2/arg/
as_ref.rs

1use crate::Arg;
2
3impl AsRef<str> for Arg {
4    fn as_ref(&self) -> &str {
5        self.0.as_ref()
6    }
7}