Struct com_rs::IUnknown [] [src]

#[repr(C)]
pub struct IUnknown { /* fields omitted */ }

Base interface for all COM types.

None of the methods on this struct should be called directly, use ComPtr instead.

Methods

impl IUnknown
[src]

Retrieves pointers to the supported interfaces on an object. Use ComPtr::from instead.

Increments the reference count for an interface on an object. Should never need to call this directly.

Decrements the reference count for an interface on an object. Should never need to call this directly.

Trait Implementations

impl Debug for IUnknown
[src]

Formats the value using the given formatter.

impl AsComPtr<IUnknown> for IUnknown
[src]

impl ComInterface for IUnknown
[src]

Get the IID associated with a COM interface struct.