Type Alias rxing::PointI

source ·
pub type PointI = PointT<i32>;

Aliased Type§

struct PointI {
    pub x: i32,
    pub y: i32,
}

Fields§

§x: i32§y: i32

Trait Implementations§

source§

impl From<(f32, f32)> for PointI

source§

fn from((x, y): (f32, f32)) -> Self

Converts to this type from the input type.
source§

impl From<PointT<f32>> for PointI

source§

fn from(val: Point) -> Self

Converts to this type from the input type.