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