• Home
  • Raw
  • Download

Lines Matching +full:style +full:- +full:mod

1 …//github.com/dtolnay/rustversion) [![crates-io]](https://crates.io/crates/rustversion) […
3 //! [github]: https://img.shields.io/badge/github-8da0cb?style=for-the-badge&labelColor=555555&logo…
4 //! [crates-io]: https://img.shields.io/badge/crates.io-fc8d62?style=for-the-badge&labelColor=55555…
5 //! [docs-rs]: https://img.shields.io/badge/docs.rs-66c2a5?style=for-the-badge&labelColor=555555&lo…
13 //! [cfg]: https://doc.rust-lang.org/reference/conditional-compilation.html#the-cfg-attribute
14 //! [cfg_attr]: https://doc.rust-lang.org/reference/conditional-compilation.html#the-cfg_attr-attri…
20 //! - <p style="margin-left:50px;text-indent:-50px">
26 //! - <p style="margin-left:50px;text-indent:-50px">
32 //! - <p style="margin-left:50px;text-indent:-50px">
38 //! - <p style="margin-left:50px;text-indent:-50px">
44 //! - <p style="margin-left:50px;text-indent:-50px">
45 //! <b><code>#[rustversion::nightly(2019-01-01)]</code></b>
50 //! - <p style="margin-left:50px;text-indent:-50px">
57 //! - <p style="margin-left:50px;text-indent:-50px">
58 //! <b><code>#[rustversion::since(2019-01-01)]</code></b>
63 //! - <p style="margin-left:50px;text-indent:-50px">
69 //! - <p style="margin-left:50px;text-indent:-50px">
75 //! - <p style="margin-left:50px;text-indent:-50px">
78 //! True if any of the comma-separated selectors is true; for example
82 //! - <p style="margin-left:50px;text-indent:-50px">
85 //! True if all of the comma-separated selectors are true; for example
89 //! - <p style="margin-left:50px;text-indent:-50px">
104 //! [pin]: https://blog.rust-lang.org/2019/02/28/Rust-1.33.0.html#pinning
121 //! [packed]: https://github.com/rust-lang/rust/blob/master/RELEASES.md#version-1330-2019-02-28
141 //! fn duration_as_days(dur: Duration) -> u64 {
156 // https://github.com/rust-lang/rust-clippy/issues/8539
169 mod attr;
170 mod bound;
171 mod constfn;
172 mod date;
173 mod error;
174 mod expand;
175 mod expr;
176 mod iter;
177 mod release;
178 mod time;
179 mod token;
180 mod version;
188 fn rust_version() -> Version { in rust_version()
198 pub fn stable(args: TokenStream, input: TokenStream) -> TokenStream { in stable()
203 pub fn beta(args: TokenStream, input: TokenStream) -> TokenStream { in beta()
208 pub fn nightly(args: TokenStream, input: TokenStream) -> TokenStream { in nightly()
213 pub fn since(args: TokenStream, input: TokenStream) -> TokenStream { in since()
218 pub fn before(args: TokenStream, input: TokenStream) -> TokenStream { in before()
223 pub fn not(args: TokenStream, input: TokenStream) -> TokenStream { in not()
228 pub fn any(args: TokenStream, input: TokenStream) -> TokenStream { in any()
233 pub fn all(args: TokenStream, input: TokenStream) -> TokenStream { in all()
238 pub fn attr(args: TokenStream, input: TokenStream) -> TokenStream { in attr()
246 pub fn cfg(input: TokenStream) -> TokenStream { in cfg()