PointView

Type Alias PointView 

Source
pub type PointView<'a, X, Y = X> = Point<&'a X, &'a Y>;
Expand description

An instance of the Point implementation containing owned references to the inner values.

Aliased Type§

#[repr(C)]
pub struct PointView<'a, X, Y = X> { pub x: &'a X, pub y: &'a Y, }

Fields§

§x: &'a X§y: &'a Y