mirror of
https://github.com/servo/servo
synced 2026-04-30 11:27:28 +02:00
19 lines
499 B
Rust
19 lines
499 B
Rust
/* 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/. */
|
|
use gecko_bindings::structs::nsCOMPtr;
|
|
|
|
impl<T> nsCOMPtr<T> {
|
|
#[cfg(debug_assertions)]
|
|
#[inline]
|
|
pub fn raw(&self) -> *mut T {
|
|
self.mRawPtr
|
|
}
|
|
|
|
#[cfg(not(debug_assertions))]
|
|
#[inline]
|
|
pub fn raw(&self) -> *mut T {
|
|
self._base.mRawPtr as *mut _
|
|
}
|
|
}
|