style: Document the nsCOMPtr sugar.

This commit is contained in:
Emilio Cobos Álvarez 2017-01-02 03:47:43 +01:00
parent bcac8265c9
commit 9b6cf8dc1b
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C

View file

@ -1,15 +1,20 @@
/* This Source Code Form is subject to the terms of the Mozilla Public
* 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/. */
//! Little helpers for `nsCOMPtr`.
use gecko_bindings::structs::nsCOMPtr;
impl<T> nsCOMPtr<T> {
/// Get this pointer as a raw pointer.
#[cfg(debug_assertions)]
#[inline]
pub fn raw(&self) -> *mut T {
self.mRawPtr
}
/// Get this pointer as a raw pointer.
#[cfg(not(debug_assertions))]
#[inline]
pub fn raw(&self) -> *mut T {