1use crate::*; 2 3impl ToOutput for str { 4 fn to_output(&self, output: &mut dyn Output) { 5 output.write(self.as_bytes()); 6 } 7} 8 9impl Topological for str {} 10impl Tagged for str {}