Struct jni::signature::TypeSignature [] [src]

pub struct TypeSignature {
    pub args: Vec<JavaType>,
    pub ret: JavaType,
}

A method type signature. This is the structure representation of something like (Ljava/lang/String;)Z. Used by the call_(object|static)_method functions on jnienv to ensure safety.

Fields

Methods

impl TypeSignature
[src]

[src]

Parse a signature string into a TypeSignature enum.

Trait Implementations

impl Eq for TypeSignature
[src]

impl PartialEq for TypeSignature
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Debug for TypeSignature
[src]

[src]

Formats the value using the given formatter.

impl Display for TypeSignature
[src]

[src]

Formats the value using the given formatter. Read more