rust: fix doctests

Doctests were not being run by CI, and have broken. Fix them.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
Paolo Bonzini 2025-02-11 13:55:53 +01:00
parent ee7d3aec54
commit 16534af51b
3 changed files with 8 additions and 2 deletions

View file

@ -7,7 +7,7 @@
/// behavior. This trait in principle could be implemented as just:
///
/// ```
/// pub unsafe trait Zeroable {
/// pub unsafe trait Zeroable: Default {
/// const ZERO: Self = unsafe { ::core::mem::MaybeUninit::<Self>::zeroed().assume_init() };
/// }
/// ```