You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This lets all of rusttype's structs, such as FontCollection and Glyph, use the same interface for owned and unowned backing stores. Instead of taking a &'a [u8] they just take Into<SharedBytes<'a>>.
Something like this might make it easier to avoid issues such as andelf/rust-sdl2_ttf#29 , andelf/rust-sdl2_ttf#29 , and anything that uses a RWops (#535 was not the panacea I was hoping it would be).