├── .gitignore ├── .travis.yml ├── Cargo.lock ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md └── src ├── function.rs ├── lib.rs ├── linkify.rs ├── main.rs ├── pattern.rs ├── snippets ├── mod.rs ├── nightly │ ├── impl_trait.rs │ └── mod.rs └── stable │ ├── function_args.rs │ └── mod.rs ├── static └── index.html ├── types.rs └── util.rs /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | explain-rs.iml 3 | target 4 | *.rs.bk 5 | dist/*.html -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matprec/explain-rs/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matprec/explain-rs/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matprec/explain-rs/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matprec/explain-rs/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matprec/explain-rs/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matprec/explain-rs/HEAD/README.md -------------------------------------------------------------------------------- /src/function.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matprec/explain-rs/HEAD/src/function.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matprec/explain-rs/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/linkify.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matprec/explain-rs/HEAD/src/linkify.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matprec/explain-rs/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/pattern.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matprec/explain-rs/HEAD/src/pattern.rs -------------------------------------------------------------------------------- /src/snippets/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matprec/explain-rs/HEAD/src/snippets/mod.rs -------------------------------------------------------------------------------- /src/snippets/nightly/impl_trait.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matprec/explain-rs/HEAD/src/snippets/nightly/impl_trait.rs -------------------------------------------------------------------------------- /src/snippets/nightly/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matprec/explain-rs/HEAD/src/snippets/nightly/mod.rs -------------------------------------------------------------------------------- /src/snippets/stable/function_args.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matprec/explain-rs/HEAD/src/snippets/stable/function_args.rs -------------------------------------------------------------------------------- /src/snippets/stable/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matprec/explain-rs/HEAD/src/snippets/stable/mod.rs -------------------------------------------------------------------------------- /src/static/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matprec/explain-rs/HEAD/src/static/index.html -------------------------------------------------------------------------------- /src/types.rs: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/util.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matprec/explain-rs/HEAD/src/util.rs --------------------------------------------------------------------------------