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

Required Methods§

source

fn cr(xy: (T, T)) -> TextPos

Creates a new TextPos::ColRow

source

fn px(xy: (T, T)) -> TextPos

Creates a new TextPos::Px

Object Safety§

This trait is not object safe.

Implementors§