Struct moore_svlog_syntax::ast::ParamDecl [] [src]

pub struct ParamDecl {
    pub span: Span,
    pub local: bool,
    pub kind: ParamKind,
}

A parameter or localparam declaration.

"localparam" data_type_or_implicit list_of_param_assignments
"localparam" "type" list_of_type_assignments
"parameter" data_type_or_implicit list_of_param_assignments
"parameter" "type" list_of_type_assignments

Fields

Trait Implementations

impl Debug for ParamDecl
[src]

[src]

Formats the value using the given formatter.

impl Clone for ParamDecl
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

impl Encodable for ParamDecl
[src]

[src]

Serialize a value using an Encoder.

impl Decodable for ParamDecl
[src]

[src]

Deserialize a value using a Decoder.