Trait fruity__bbqsrc::objc::ClassType[][src]

pub trait ClassType<'data>: ObjectType<'data> {
    fn class() -> &'static Class;
}
Expand description

A type that represents an instance of a specific Objective-C class.

Related Items

Required methods

Returns the Objective-C class that can be used to instantiate a new instance of Self.

If the class is not available at runtime, a link error will occur during program launch.

Implementors