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
span: Span
strength: Option<(DriveStrength, DriveStrength)>
delay: Option<Expr>
delay_control: Option<DelayControl>
assignments: Vec<(Expr, Expr)>
Trait Implementations
impl Debug for ContAssign
[src]
impl Clone for ContAssign
[src]
fn clone(&self) -> ContAssign
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl PartialEq for ContAssign
[src]
fn eq(&self, __arg_0: &ContAssign) -> bool
[src]
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, __arg_0: &ContAssign) -> bool
[src]
This method tests for !=
.
impl Eq for ContAssign
[src]
impl Encodable for ContAssign
[src]
fn encode<__S: Encoder>(&self, __arg_0: &mut __S) -> Result<(), __S::Error>
[src]
Serialize a value using an Encoder
.