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