Struct moore_svlog_syntax::ast::ClassDecl [] [src]

pub struct ClassDecl {
    pub span: Span,
    pub virt: bool,
    pub lifetime: Lifetime,
    pub name: Identifier,
    pub params: Vec<ParamDecl>,
    pub extends: Option<(Type, Vec<CallArg>)>,
    pub items: Vec<ClassItem>,
}

Fields

Trait Implementations

impl Debug for ClassDecl
[src]

[src]

Formats the value using the given formatter.

impl Clone for ClassDecl
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

impl Encodable for ClassDecl
[src]

[src]

Serialize a value using an Encoder.

impl Decodable for ClassDecl
[src]

[src]

Deserialize a value using a Decoder.