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 commit was created on GitHub.com and signed with GitHub’s verified signature.
Release notes
Enhancements
Added RecordBuf, an owned stack-allocated buffer for holding a DBN record of
dynamic type. Complements RecordRef (borrowed, dynamic) and concrete types
(owned, static). Supports get(), try_get(), set(), upgrade(), and
cross-capacity PartialEq
Added RecordRefMut for mutable non-owning references to DBN records
Added RecordRef::to_owned() and RecordRefMut::to_owned() for converting
borrowed records to an owned RecordBuf
Added Hash, PartialEq, and Eq for RecordRef, including cross-type equality
between RecordBuf and RecordRef
Changed RecordHeader to be Copy
Release notes
Enhancements
Added RecordBuf, an owned stack-allocated buffer for holding a DBN record of
dynamic type. Complements RecordRef (borrowed, dynamic) and concrete types
(owned, static). Supports get(), try_get(), set(), upgrade(), and
cross-capacity PartialEq
Added RecordRefMut for mutable non-owning references to DBN records
Added RecordRef::to_owned() and RecordRefMut::to_owned() for converting
borrowed records to an owned RecordBuf
Added Hash, PartialEq, and Eq for RecordRef, including cross-type equality
between RecordBuf and RecordRef