Trait fruity__bbqsrc::objc::ObjectType[][src]

pub trait ObjectType<'data>: 'data + ObjectType + AsRef<ObjCObject<'data>> {
    fn as_objc_object(&self) -> &ObjCObject<'data> { ... }
fn class<'s>(&'s self) -> &'s Class
    where
        'data: 's
, { ... } }
Expand description

An Objective-C object instance.

Related Items

Provided methods

Casts self into a type-erased Objective-C object.

Returns the class that this object is an instance of.

Implementors