Lines Matching +full:style +full:- +full:mod
1 …(https://github.com/dtolnay/remain) [![crates-io]](https://crates.io/crates/remain) [![d…
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…
15 //! Place a `#[remain::sorted]` attribute on enums, structs, match-expressions,
16 //! or let-statements whose value is a match-expression.
42 //! fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
60 //! # mod signal {
64 //! # mod libcras {
68 //! # mod sys_util {
72 //! # mod qcow {
76 //! # mod io_jail {
80 //! # mod virtio {
100 //! --> tests/stable.rs:49:5
110 //! Rust does not yet have stable support for user-defined attributes within a
111 //! function body, so the attribute on match-expressions and let-statements
120 //! As a stable alternative, this crate provides a function-level attribute
121 //! called `#[remain::check]` which makes match-expression and let-statement
132 //! fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
160 mod atom;
161 mod check;
162 mod compare;
163 mod emit;
164 mod format;
165 mod parse;
166 mod visit;
177 pub fn sorted(args: TokenStream, input: TokenStream) -> TokenStream { in sorted()
192 pub fn check(args: TokenStream, input: TokenStream) -> TokenStream { in check()