pub type PointViewMut<'a, X, Y = X> = Point<&'a mut X, &'a mut Y>;Expand description
An instance of the Point implementation containing mutable references to the inner
values.
Aliased Type§
#[repr(C)]pub struct PointViewMut<'a, X, Y = X> {
pub x: &'a mut X,
pub y: &'a mut Y,
}Fields§
§x: &'a mut X§y: &'a mut Y