[][src]Struct moore_svlog_syntax::ast::GenerateIfData

pub struct GenerateIfData<'a> {
    pub cond: Expr<'a>,
    pub main_block: GenerateBlock<'a>,
    pub else_block: Option<GenerateBlock<'a>>,
}

An if generate statement.

Fields

cond: Expr<'a>main_block: GenerateBlock<'a>else_block: Option<GenerateBlock<'a>>

Trait Implementations

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

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

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

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

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

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

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

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

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

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

Auto Trait Implementations

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

impl<'a> Send for GenerateIfData<'a>

impl<'a> Sync for GenerateIfData<'a>

impl<'a> Unpin for GenerateIfData<'a>

impl<'a> !UnwindSafe for GenerateIfData<'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.