Struct moore_svlog_syntax::ast::VarDecl [] [src]

pub struct VarDecl {
    pub span: Span,
    pub konst: bool,
    pub var: bool,
    pub lifetime: Option<Lifetime>,
    pub ty: Type,
    pub names: Vec<VarDeclName>,
}

Fields

Trait Implementations

impl Debug for VarDecl
[src]

[src]

Formats the value using the given formatter.

impl Clone for VarDecl
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

impl Encodable for VarDecl
[src]

[src]

Serialize a value using an Encoder.

impl Decodable for VarDecl
[src]

[src]

Deserialize a value using a Decoder.