Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
serde_macros 0.8.1 - Docs.rs
[go: Go Back, main page]

serde_macros 0.8.1

Macros to auto-generate implementations for the serde framework
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#[cfg(feature = "unstable-testing")]
mod inner {
    extern crate skeptic;

    pub fn main() {
        println!("cargo:rerun-if-changed=../README.md");
        skeptic::generate_doc_tests(&["../README.md"]);
    }
}

#[cfg(not(feature = "unstable-testing"))]
mod inner {
    pub fn main() {}
}

fn main() {
    inner::main()
}