glutin
glutin copied to clipboard
Make the error size smaller
The Error
struct is six words wide. In comparison, most of the types returned via Result
are one or two words wide. This means that there is about four words of space wasted in every Result
. This could be fixed by making the Error
type smaller, perhaps by Box
ing its innards.