1 pub trait Text { 2 fn text<S: Into<String>>(&self, text: S) -> &Self; 3 fn text_offset(&self, x: i32, y: i32) -> &Self; 4 } 5