This repository was archived by the owner on May 22, 2026. It is now read-only.
vmm-sys-util-v0.13.0
Changelog
v0.13.0
Added
- [#230]: Introduce align_downwards! and align_upwards! macro to help address aligning, this implementation is faster than div_ceil way and more robust.
- [#236]: Add a utility function for constructing an empty FamStructWrapper with a given header.
Changed
- [#228]: Make
Debugimpl forFamStructWrapper<T>print out contents of the flexible array member. This causesDebugto only be implemented ifT::Entry: Debug.
Removed
- [#235]: Removed
impl From<Vec<T>> for FamStructWrapper<T>, as this was unsound.