diny_test 0.0.2

Test serializer format for the diny framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![cfg_attr(not(feature = "std"), no_std)]

#![allow(incomplete_features)]
#![feature(generic_associated_types)]

mod common;

use common::*;
use common::empty_struct::*;


#[test]
fn can_serialize_empty_struct() {
    test_serialize_exact::<EmptyStruct, 0>(&EmptyStruct::new());
}