pub trait TextExt { // Required method fn text(&self) -> Option<&str>; }
Extension trait for Text objects.