Files
rust/src/doc
Simonas Kazlauskas 432460a6fc Synthesize calls to box_free language item
This gets rid of Drop(Free, _) MIR construct by synthesizing a call to language item which
takes care of dropping instead.
2016-02-04 15:56:01 +02:00
..
2015-11-08 09:39:01 -06:00
2015-06-12 16:26:07 -04:00
2015-04-18 17:55:31 -04:00
2015-11-30 15:00:30 -05:00
2014-09-30 18:54:03 +02:00
2015-01-21 14:59:25 -05:00
2015-01-13 21:11:47 -05:00
2014-12-19 18:09:33 -05: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.