packable 0.11.0

A crate for packing and unpacking binary representations.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2023 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

mod common;

#[test]
fn packable_boxed_slice() {
    assert_eq!(
        common::generic_test(&vec![Some(0u32), None].into_boxed_slice()).0.len(),
        core::mem::size_of::<u64>()
            + (core::mem::size_of::<u8>() + core::mem::size_of::<u32>())
            + core::mem::size_of::<u8>()
    );
}