aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom
diff options
context:
space:
mode:
authorbors-servo <metajack+bors@gmail.com>2014-12-20 08:36:43 -0700
committerbors-servo <metajack+bors@gmail.com>2014-12-20 08:36:43 -0700
commit661144d28546dc287cba6a76325855c0efac9551 (patch)
tree468e68919b19acde7a7f61ff1ca4f8f8899e9ede /components/script/dom
parent1f74e54bb2d0b16866aeaa7e4d00f801560afe7b (diff)
parent7ec11b22b445f32ab7db2db11f889731e25cc4c1 (diff)
downloadservo-661144d28546dc287cba6a76325855c0efac9551.tar.gz
servo-661144d28546dc287cba6a76325855c0efac9551.zip
auto merge of #4450 : Ms2ger/servo/domrefcell-doc, r=jdm
Diffstat (limited to 'components/script/dom')
-rw-r--r--components/script/dom/bindings/cell.rs48
1 files changed, 45 insertions, 3 deletions
diff --git a/components/script/dom/bindings/cell.rs b/components/script/dom/bindings/cell.rs
index 76219b799c8..9df1e448cc6 100644
--- a/components/script/dom/bindings/cell.rs
+++ b/components/script/dom/bindings/cell.rs
@@ -2,6 +2,10 @@
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+#![deny(missing_docs)]
+
+//! A shareable mutable container for the DOM.
+
use dom::bindings::trace::JSTraceable;
use js::jsapi::{JSTracer};
@@ -46,11 +50,31 @@ impl<T> DOMRefCell<T> {
self.value.try_borrow().is_some()
}
+ /// Attempts to immutably borrow the wrapped value.
+ ///
+ /// The borrow lasts until the returned `Ref` exits scope. Multiple
+ /// immutable borrows can be taken out at the same time.
+ ///
+ /// Returns `None` if the value is currently mutably borrowed.
+ ///
+ /// # Panics
+ ///
+ /// Panics if this is called off the script thread.
pub fn try_borrow<'a>(&'a self) -> Option<Ref<'a, T>> {
debug_assert!(task_state::get().is_script());
self.value.try_borrow()
}
+ /// Mutably borrows the wrapped value.
+ ///
+ /// The borrow lasts until the returned `RefMut` exits scope. The value
+ /// cannot be borrowed while this borrow is active.
+ ///
+ /// Returns `None` if the value is currently borrowed.
+ ///
+ /// # Panics
+ ///
+ /// Panics if this is called off the script thread.
pub fn try_borrow_mut<'a>(&'a self) -> Option<RefMut<'a, T>> {
debug_assert!(task_state::get().is_script());
self.value.try_borrow_mut()
@@ -66,16 +90,24 @@ impl<T: JSTraceable> JSTraceable for DOMRefCell<T> {
// Functionality duplicated with `core::cell::RefCell`
// ===================================================
impl<T> DOMRefCell<T> {
+ /// Create a new `DOMRefCell` containing `value`.
pub fn new(value: T) -> DOMRefCell<T> {
DOMRefCell {
value: RefCell::new(value),
}
}
- pub fn unwrap(self) -> T {
- self.value.unwrap()
- }
+ /// Immutably borrows the wrapped value.
+ ///
+ /// The borrow lasts until the returned `Ref` exits scope. Multiple
+ /// immutable borrows can be taken out at the same time.
+ ///
+ /// # Panics
+ ///
+ /// Panics if this is called off the script thread.
+ ///
+ /// Panics if the value is currently mutably borrowed.
pub fn borrow<'a>(&'a self) -> Ref<'a, T> {
match self.try_borrow() {
Some(ptr) => ptr,
@@ -83,6 +115,16 @@ impl<T> DOMRefCell<T> {
}
}
+ /// Mutably borrows the wrapped value.
+ ///
+ /// The borrow lasts until the returned `RefMut` exits scope. The value
+ /// cannot be borrowed while this borrow is active.
+ ///
+ /// # Panics
+ ///
+ /// Panics if this is called off the script thread.
+ ///
+ /// Panics if the value is currently borrowed.
pub fn borrow_mut<'a>(&'a self) -> RefMut<'a, T> {
match self.try_borrow_mut() {
Some(ptr) => ptr,