Struct xswag_syntax_java::ast::item::Method [] [src]

pub struct Method {
    pub vis: Visibility,
    pub name: Ident,
    pub ret_ty: Type,
    pub static_: bool,
    pub final_: bool,
    pub strictfp: bool,
    pub abstract_: bool,
    pub native: bool,
    pub synchronized: bool,
    pub default: bool,
    pub params: Vec<FormalParameter>,
    pub throws: Vec<Type>,
    pub block: Option<Block>,
}

Fields

Trait Implementations

impl Debug for Method
[src]

Formats the value using the given formatter.

impl Clone for Method
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more