[][src]Struct moore_svlog_syntax::ast::GenerateForData

pub struct GenerateForData<'a> {
    pub init: Stmt<'a>,
    pub cond: Expr<'a>,
    pub step: Expr<'a>,
    pub block: GenerateBlock<'a>,
}

A for generate statement.

Fields

init: Stmt<'a>cond: Expr<'a>step: Expr<'a>block: GenerateBlock<'a>

Trait Implementations

impl<'a> AcceptVisitor<'a> for GenerateForData<'a>[src]

impl<'a> AnyNodeData for GenerateForData<'a>[src]

impl<'a> Clone for GenerateForData<'a>[src]

impl<'a> Debug for GenerateForData<'a>[src]

impl<'a> Eq for GenerateForData<'a>[src]

impl<'a> ForEachChild<'a> for GenerateForData<'a>[src]

impl<'a> ForEachNode<'a> for GenerateForData<'a>[src]

impl<'a> PartialEq<GenerateForData<'a>> for GenerateForData<'a>[src]

impl<'a> StructuralEq for GenerateForData<'a>[src]

impl<'a> StructuralPartialEq for GenerateForData<'a>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for GenerateForData<'a>

impl<'a> Send for GenerateForData<'a>

impl<'a> Sync for GenerateForData<'a>

impl<'a> Unpin for GenerateForData<'a>

impl<'a> !UnwindSafe for GenerateForData<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.