Struct codeviz_java::ConstructorSpec [] [src]

pub struct ConstructorSpec {
    pub modifiers: Modifiers,
    pub annotations: Vec<AnnotationSpec>,
    pub arguments: Vec<ArgumentSpec>,
    pub throws: Vec<ClassType>,
    pub elements: Elements,
}

Fields

Methods

impl ConstructorSpec
[src]

Trait Implementations

impl Debug for ConstructorSpec
[src]

Formats the value using the given formatter.

impl Clone for ConstructorSpec
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<'a, T> From<&'a T> for ConstructorSpec where
    T: Into<ConstructorSpec> + Clone
[src]

Performs the conversion.