mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-03 12:57:38 +03:00
Update expanded code sample in readme
This commit is contained in:
parent
fcc7256aae
commit
f7ced95181
1 changed files with 20 additions and 16 deletions
36
README.md
36
README.md
|
@ -42,34 +42,38 @@ colorized. Install with `pip install Pygments`.
|
|||
> #[prelude_import]
|
||||
> use std::prelude::v1::*;
|
||||
> #[macro_use]
|
||||
> extern crate std as std;
|
||||
> extern crate std;
|
||||
> struct S;
|
||||
> #[automatically_derived]
|
||||
> #[allow(unused_qualifications)]
|
||||
> impl ::std::fmt::Debug for S {
|
||||
> fn fmt(&self, __arg_0: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
|
||||
> fn fmt(&self, f: &mut ::std::fmt::Formatter) -> ::std::fmt::Result {
|
||||
> match *self {
|
||||
> S => {
|
||||
> let mut builder = __arg_0.debug_tuple("S");
|
||||
> builder.finish()
|
||||
> let mut debug_trait_builder = f.debug_tuple("S");
|
||||
> debug_trait_builder.finish()
|
||||
> }
|
||||
> }
|
||||
> }
|
||||
> }
|
||||
>
|
||||
> fn main() {
|
||||
> ::io::_print(::std::fmt::Arguments::new_v1({
|
||||
> static __STATIC_FMTSTR:
|
||||
> &'static [&'static str]
|
||||
> =
|
||||
> &["", "\n"];
|
||||
> __STATIC_FMTSTR
|
||||
> },
|
||||
> &match (&S,) {
|
||||
> (__arg0,) =>
|
||||
> [::std::fmt::ArgumentV1::new(__arg0,
|
||||
> ::std::fmt::Debug::fmt)],
|
||||
> }));
|
||||
> ::io::_print(::std::fmt::Arguments::new_v1_formatted(
|
||||
> &["", "\n"],
|
||||
> &match (&S,) {
|
||||
> (arg0,) => [::std::fmt::ArgumentV1::new(arg0, ::std::fmt::Debug::fmt)],
|
||||
> },
|
||||
> &[::std::fmt::rt::v1::Argument {
|
||||
> position: ::std::fmt::rt::v1::Position::At(0usize),
|
||||
> format: ::std::fmt::rt::v1::FormatSpec {
|
||||
> fill: ' ',
|
||||
> align: ::std::fmt::rt::v1::Alignment::Unknown,
|
||||
> flags: 0u32,
|
||||
> precision: ::std::fmt::rt::v1::Count::Implied,
|
||||
> width: ::std::fmt::rt::v1::Count::Implied,
|
||||
> },
|
||||
> }],
|
||||
> ));
|
||||
> }
|
||||
> ```
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue