RawPoint

Type Alias RawPoint 

Source
pub type RawPoint<X, Y = X> = Point<*const X, *const Y>;
Expand description

A Point whose elements are raw pointers to X and Y

Aliased Type§

#[repr(C)]
pub struct RawPoint<X, Y = X> { pub x: *const X, pub y: *const Y, }

Fields§

§x: *const X§y: *const Y