Struct com_scrape_types::ComPtr
source · pub struct ComPtr<I: Interface> { /* private fields */ }
Expand description
An owning smart pointer to a COM object.
A ComPtr<I>
represents an owning reference to a COM object implementing interface I
. Like
ComRef
, ComPtr
can be used to call interface methods on the referenced object. Unlike
ComRef
, ComPtr
manages the object’s reference count, i.e. it will call the release
method of the object it points to when going out of scope. See the
crate-level documentation for more information.
A ComPtr
can be created safely from a ComRef
via ComRef::to_com_ptr
, or from a
ComWrapper
via ComWrapper::to_com_ptr
.
It can also be created unsafely via ComPtr::from_raw
.
Implementations§
source§impl<I: Interface> ComPtr<I>
impl<I: Interface> ComPtr<I>
sourcepub fn as_ptr(&self) -> *mut I
pub fn as_ptr(&self) -> *mut I
Gets the wrapped interface pointer.
Does not perform any reference counting operations.
sourcepub unsafe fn from_raw(ptr: *mut I) -> Option<ComPtr<I>>
pub unsafe fn from_raw(ptr: *mut I) -> Option<ComPtr<I>>
Creates a ComPtr
from a raw interface pointer if the pointer is non-null.
When the resulting ComPtr
is dropped, the reference count of the object it points to will
be decremented. Thus, using this method can be thought of as “taking ownership” of a
pointer to a COM object.
from_raw
will check if ptr
is null (and return None
if so), but this method is still
unsafe, as the caller must still ensure that ptr
is a valid interface pointer (see below)
if it is non-null.
§Safety
If ptr
is non-null, it must be a valid pointer to a value of type I
, and if *ptr
is
reinterpreted as *const I::Vtbl
(see the safety documentation for
Interface
), it must in turn be a valid pointer to I::Vtbl
.
sourcepub unsafe fn from_raw_unchecked(ptr: *mut I) -> ComPtr<I>
pub unsafe fn from_raw_unchecked(ptr: *mut I) -> ComPtr<I>
Creates a ComPtr
from a raw interface pointer.
When the resulting ComPtr
is dropped, the reference count of the object it points to will
be decremented. Thus, using this method can be thought of as “taking ownership” of a
pointer to a COM object.
§Safety
ptr
must be a valid pointer to a value of type I
, and if *ptr
is reinterpreted as
*const I::Vtbl
(see the safety documentation for Interface
), it
must in turn be a valid pointer to I::Vtbl
.
sourcepub fn into_raw(self) -> *mut I
pub fn into_raw(self) -> *mut I
Consumes the ComPtr
, returning the wrapped interface pointer.
Since this method consumes the ComPtr
, it prevents the ComPtr
from decrementing the
reference count of the object it points to. Thus, using this method can be thought of as
“relinquishing ownership” of a pointer to a COM object.
sourcepub fn as_com_ref<'a>(&'a self) -> ComRef<'a, I>
pub fn as_com_ref<'a>(&'a self) -> ComRef<'a, I>
Returns a ComRef
pointing to the same object as this ComPtr
. Can be thought of as a
borrow.
Does not perform any reference counting operations.