[][src]Trait core_foundation::base::TCFType

pub trait TCFType {
    type Ref: TCFTypeRef;
    fn as_concrete_TypeRef(&self) -> Self::Ref;
unsafe fn wrap_under_create_rule(obj: Self::Ref) -> Self;
fn type_id() -> CFTypeID;
fn as_CFTypeRef(&self) -> CFTypeRef;
unsafe fn wrap_under_get_rule(reference: Self::Ref) -> Self; fn as_CFType(&self) -> CFType { ... }
fn into_CFType(self) -> CFType
    where
        Self: Sized
, { ... }
fn retain_count(&self) -> CFIndex { ... }
fn type_of(&self) -> CFTypeID { ... }
fn show(&self) { ... }
fn instance_of<OtherCFType: TCFType>(&self) -> bool { ... } }

All Core Foundation types implement this trait. The associated type Ref specifies the associated Core Foundation type: e.g. for CFType this is CFTypeRef; for CFArray this is CFArrayRef.

Associated Types

The reference type wrapped inside this type.

Required Methods

Returns the object as its concrete TypeRef.

Returns an instance of the object, wrapping the underlying CFTypeRef subclass. Use this when following Core Foundation's "Create Rule". The reference count is not bumped.

Returns the type ID for this class.

Returns the object as a raw CFTypeRef. The reference count is not adjusted.

Returns an instance of the object, wrapping the underlying CFTypeRef subclass. Use this when following Core Foundation's "Get Rule". The reference count is bumped.

Provided Methods

Returns the object as a wrapped CFType. The reference count is incremented by one.

Returns the object as a wrapped CFType. Consumes self and avoids changing the reference count.

Returns the reference count of the object. It is unwise to do anything other than test whether the return value of this method is greater than zero.

Returns the type ID of this object.

Writes a debugging version of this object on standard error.

Returns true if this value is an instance of another type.

Implementors

impl TCFType for CFAllocator
[src]

impl TCFType for CFType
[src]

impl TCFType for CFBoolean
[src]

impl TCFType for CFBundle
[src]

impl TCFType for CFData
[src]

impl TCFType for CFDate
[src]

impl TCFType for CFDictionary
[src]

impl TCFType for CFMutableDictionary
[src]

impl TCFType for CFError
[src]

impl TCFType for CFFileDescriptor
[src]

impl TCFType for CFNumber
[src]

impl TCFType for CFRunLoop
[src]

impl TCFType for CFRunLoopObserver
[src]

impl TCFType for CFRunLoopSource
[src]

impl TCFType for CFRunLoopTimer
[src]

impl TCFType for CFSet
[src]

impl TCFType for CFString
[src]

impl TCFType for CFTimeZone
[src]

impl TCFType for CFURL
[src]

impl TCFType for CFUUID
[src]

impl<T> TCFType for CFArray<T>
[src]