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
Optimizes GString to avoid unnecessary checking for interior nul bytes.
Interior nul bytes will now only be checked upon request. When
converting to C strings, the string will always get truncated to the
first nul byte. Since GString can now contain interior nul bytes in some
circumstances, its interior representation is now Option<Box<str>>.
Also adds custom error types for conversions.
0 commit comments