Struct objc::MessageError[][src]

pub struct MessageError(_);

An error encountered while attempting to send a message.

Currently, an error may be returned in two cases:

  • an Objective-C exception is thrown and the exception feature is enabled
  • the encodings of the arguments do not match the encoding of the method and the verify_message feature is enabled

Trait Implementations

impl Debug for MessageError
[src]

Formats the value using the given formatter. Read more

impl Display for MessageError
[src]

Formats the value using the given formatter. Read more

impl Error for MessageError
[src]

This method is soft-deprecated. Read more

The lower-level cause of this error, if any. Read more

Auto Trait Implementations