This commit is contained in:
Zhen Zhang 2016-05-02 11:17:35 +08:00
parent e65009f317
commit 0385f60310
2 changed files with 1 additions and 8 deletions

View file

@ -112,11 +112,6 @@
//! //!
//! Legacy callers are not yet implemented. //! Legacy callers are not yet implemented.
//! //!
//! Rust reflections of getters and setters
//! ---------------------------------------
//!
//! *To be written.*
//!
//! Throwing exceptions //! Throwing exceptions
//! =================== //! ===================
//! //!

View file

@ -32,13 +32,11 @@
//! * rooting pointers on the stack: //! * rooting pointers on the stack:
//! the [`Root`](bindings/js/struct.Root.html) smart pointer; //! the [`Root`](bindings/js/struct.Root.html) smart pointer;
//! * tracing pointers in member fields: the [`JS`](bindings/js/struct.JS.html), //! * tracing pointers in member fields: the [`JS`](bindings/js/struct.JS.html),
//! [`MutNullableJS`](bindings/js/struct.MutNullableJS.html) and //! [`MutNullableHeap`](bindings/js/struct.MutNullableHeap.html) and
//! [`MutHeap`](bindings/js/struct.MutHeap.html) smart pointers and //! [`MutHeap`](bindings/js/struct.MutHeap.html) smart pointers and
//! [the tracing implementation](bindings/trace/index.html); //! [the tracing implementation](bindings/trace/index.html);
//! * rooting pointers from across thread boundaries or in channels: the //! * rooting pointers from across thread boundaries or in channels: the
//! [`Trusted`](bindings/refcounted/struct.Trusted.html) smart pointer; //! [`Trusted`](bindings/refcounted/struct.Trusted.html) smart pointer;
//! * extracting pointers to DOM objects from their reflectors: the
//! [`Unrooted`](bindings/js/struct.Unrooted.html) smart pointer.
//! //!
//! Inheritance //! Inheritance
//! =========== //! ===========