serde_macros 0.6.13

Macros to auto-generate implementations for the serde framework
1
2
3
4
5
6
7
8
9
use std::u64;

pub fn foo(x: bool) -> u64 {
    if x {
        u64::MAX
    } else {
        0
    }
}