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
rustversion 1.0.21 - Docs.rs
[go: Go Back, main page]

rustversion 1.0.21

Conditional compilation according to rustc compiler version
Documentation
#[rustversion::any(
    stable,
    stable(1.34),
    stable(1.34.0),
    beta,
    nightly,
    nightly(2020-02-25),
    since(1.34),
    since(2020-02-25),
    before(1.34),
    before(2020-02-25),
    not(nightly),
    all(stable, beta, nightly),
)]
fn success() {}

#[test]
fn test() {
    success();
}