WindowId is a window identifier, and as such doesn't store anything (unlike a handle). So we can safely make only be defined once, in the core crate.
There are a few backends where we still use into_raw internally; I consider these patterns discouraged, we should not be passing around important state in the window id.
WindowId is a window identifier, and as such doesn't store anything (unlike a handle). So we can safely make only be defined once, in the core crate.
There are a few backends where we still use
into_raw
internally; I consider these patterns discouraged, we should not be passing around important state in the window id.Builds upon #3864.