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
Hash, PartialOrd, Ord, Default traits for types that support it.
From<{native_ty} and all integer types with a From<{native_ty}> for primary keys.
Changed
BREAKING: Changed Indexable::get and Indexable::get_mut parameters from &Self::PrimaryKey to impl Into<Self::PrimaryKey>.
This is in order to reduce the boilerplate needed for calling the functions with values that aren't from another wow_dbc table.
This makes it possible to do table.get(value) instead of table.get(TableKey::new(value))
BREAKING: Removed all default features. This prevents people from mistakenly not disabling the expansions that they do not need and bloating compile times as well as IDE suggestions.