Files
cli/vendor/zerocopy/benches/try_read_from_bytes.rs

8 lines
225 B
Rust
Raw Normal View History

#[path = "formats/coco_static_size.rs"]
mod format;
#[unsafe(no_mangle)]
fn bench_try_read_from_bytes_static_size(source: &[u8]) -> Option<format::CocoPacket> {
zerocopy::TryFromBytes::try_read_from_bytes(source).ok()
}