Files
Notes/notes-service/vendor/zerocopy/benches/extend_vec_zeroed.rs
T
2026-08-01 16:11:49 +03:00

10 lines
242 B
Rust

use zerocopy::*;
#[path = "formats/coco_static_size.rs"]
mod format;
#[unsafe(no_mangle)]
fn bench_extend_vec_zeroed(v: &mut Vec<format::LocoPacket>, additional: usize) -> Option<()> {
FromZeros::extend_vec_zeroed(v, additional).ok()
}