Struct rust_jvm::vm::sig::Method
[−]
[src]
pub struct Method { pub name: String, pub params: Vec<Type>, pub return_ty: Option<Type>, }
A method signature.
Fields
name | The name of the method. |
params | The types of the parameters of the method. |
return_ty | The return type of the method, or |