pub trait TextNode<'tn>: Display { // Required method fn text_node<T>(bytes: T) -> Self where T: Into<Cow<'tn, [u8]>>; }