rust/src/doc
Felix S. Klock II 9868df2fd5 Non-parametric dropck; instead trust an unsafe attribute (RFC 1238).
Implement cannot-assume-parametricity (CAP) from RFC 1238, and add the
UGEH attribute.

----

Note that we check for the attribute attached to the dtor method, not
the Drop impl.

(This is just to match the specification of RFC and the tests; I am
not wedded to this approach.)
2015-10-06 14:16:20 +02:00
..
nomicon Nomicon: Fix Links 2015-09-12 12:13:24 +02:00
style doc: Fix broken links 2015-09-20 13:24:47 +03:00
trpl Update bibliography.md 2015-10-04 15:55:19 -07:00
complement-design-faq.md Update complement-design-faq.md 2015-06-30 17:02:10 -03:00
complement-lang-faq.md Add Terminal.com to the list of companies using rust in production. 2015-06-11 16:07:34 -07:00
complement-project-faq.md We are production ready 2015-09-20 15:53:47 -04:00
favicon.inc Use https URLs to refer to rust-lang.org where appropriate. 2015-08-09 14:28:46 -07:00
footer.inc Convert playpen.js to plain JS. 2015-06-12 16:26:07 -04:00
full-toc.inc
grammar.md doc: "familiarity" does not need to be repeated here 2015-09-24 08:04:55 +02:00
guide-crates.md
guide-error-handling.md
guide-ffi.md
guide-macros.md
guide-ownership.md
guide-plugins.md
guide-pointers.md Change removal notice for pointer guide. 2015-06-29 15:18:00 -04:00
guide-strings.md
guide-tasks.md
guide-testing.md
guide-unsafe.md
guide.md
index.md Further tweaks to doc/index.md 2015-09-06 16:07:55 +03:00
intro.md
not_found.md Use https URLs to refer to rust-lang.org where appropriate. 2015-08-09 14:28:46 -07:00
README.md Fix meta-documentation for generating all docs. 2015-09-26 12:05:47 -07:00
reference.md Non-parametric dropck; instead trust an unsafe attribute (RFC 1238). 2015-10-06 14:16:20 +02:00
rust.css Move wrapper types blog post into trpl 2015-07-25 11:02:41 +05:30
rust.md
rustdoc.md
tutorial.md
uptack.tex
version_info.html.template Use https URLs to refer to rust-lang.org where appropriate. 2015-08-09 14:28:46 -07:00

Rust documentations

Building

To generate all the docs, follow the "Building Documentation" instructions in the README in the root of the repository. This will convert the distributed Markdown docs to HTML and generate HTML doc for the books, 'std' and 'extra' libraries.

To generate HTML documentation from one source file/crate, do something like:

rustdoc --output html-doc/ --output-format html ../src/libstd/path.rs

(This, of course, requires a working build of the rustdoc tool.)

Additional notes

To generate an HTML version of a doc from Markdown manually, you can do something like:

rustdoc reference.md

(reference.md being the Rust Reference Manual.)

An overview of how to use the rustdoc command is available in the docs. Further details are available from the command line by with rustdoc --help.