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