Enum moore_vhdl_syntax::ast::SubprogData [] [src]

pub enum SubprogData {
    Decl,
    Inst {
        name: CompoundName,
        generics: Option<ParenElems>,
    },
    Body {
        decls: Vec<DeclItem>,
        stmts: Vec<Stmt>,
    },
}

Variants

Fields of Inst

Fields of Body

Trait Implementations

impl Clone for SubprogData
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for SubprogData
[src]

[src]

Formats the value using the given formatter.

impl PartialEq for SubprogData
[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 Eq for SubprogData
[src]

impl Encodable for SubprogData
[src]

[src]

Serialize a value using an Encoder.

impl Decodable for SubprogData
[src]

[src]

Deserialize a value using a Decoder.

impl HasDesc for SubprogData
[src]

[src]

Obtain a human-readable descriptive name for this node.