pub type RawPointMut<X, Y = X> = Point<*mut X, *mut Y>;Expand description
A mutable Point whose elements are raw pointers to X and Y
Aliased Type§
#[repr(C)]pub struct RawPointMut<X, Y = X> {
pub x: *mut X,
pub y: *mut Y,
}Fields§
§x: *mut X§y: *mut Y