Struct moore_svlog_syntax::ast::ContAssign [] [src]

pub struct ContAssign {
    pub span: Span,
    pub strength: Option<(DriveStrength, DriveStrength)>,
    pub delay: Option<Expr>,
    pub delay_control: Option<DelayControl>,
    pub assignments: Vec<(Expr, Expr)>,
}

A continuous assignment statement.

"assign" [drive_strength] [delay3] list_of_assignments ";"
"assign" [delay_control] list_of_assignments ";"

Fields

Trait Implementations

impl Debug for ContAssign
[src]

[src]

Formats the value using the given formatter.

impl Clone for ContAssign
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

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

impl Encodable for ContAssign
[src]

[src]

Serialize a value using an Encoder.

impl Decodable for ContAssign
[src]

[src]

Deserialize a value using a Decoder.