summaryrefslogtreecommitdiffstats
path: root/servo/components/style/gecko_bindings/sugar/ns_com_ptr.rs
blob: 1c54541bd8055cb683d4945bc3c1ad87d251806d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* 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 https://mozilla.org/MPL/2.0/. */

//! Little helpers for `nsCOMPtr`.

use crate::gecko_bindings::structs::nsCOMPtr;

impl<T> nsCOMPtr<T> {
    /// Get this pointer as a raw pointer.
    #[inline]
    pub fn raw(&self) -> *mut T {
        self.mRawPtr
    }
}