A number of public enums that aren't really supposed to be exhaustively pattern matched on, like FromVariantError, are missing #[non_exhaustive] attributes. This makes it breaking to add new variants and fields to them.
This is technically a breaking change, even though exhaustive matching isn't intended for them and should be very rare in the wild anyway.
Applicable types can be added here as they are discovered to serve as a reminder.
A number of public enums that aren't really supposed to be exhaustively pattern matched on, like
FromVariantError
, are missing#[non_exhaustive]
attributes. This makes it breaking to add new variants and fields to them.This is technically a breaking change, even though exhaustive matching isn't intended for them and should be very rare in the wild anyway.
Applicable types can be added here as they are discovered to serve as a reminder.
FromVariantError
and related detail typesGodotError