Returns the class of self.
(&self)
| 460 | impl Object { |
| 461 | /// Returns the class of self. |
| 462 | pub fn class(&self) -> &Class { |
| 463 | unsafe { |
| 464 | &*object_getClass(self) |
| 465 | } |
| 466 | } |
| 467 | |
| 468 | /// Returns a reference to the ivar of self with the given name. |
| 469 | /// Panics if self has no ivar with the given name. |
no outgoing calls
no test coverage detected