Struct codeviz_java::MethodSpec [] [src]

pub struct MethodSpec {
    pub modifiers: Modifiers,
    pub name: String,
    pub annotations: Vec<AnnotationSpec>,
    pub arguments: Vec<ArgumentSpec>,
    pub returns: Option<Type>,
    pub throws: Vec<ClassType>,
    pub elements: Elements,
}

Fields

Methods

impl MethodSpec
[src]

Trait Implementations

impl Debug for MethodSpec
[src]

Formats the value using the given formatter.

impl Clone for MethodSpec
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more