pub trait NewTextPos<T> {
    fn cr(xy: (T, T)) -> TextPos;
    fn px(xy: (T, T)) -> TextPos;
}

Required Methods§

Creates a new TextPos::ColRow

Creates a new TextPos::Px

Implementors§