Type Definition moore_svlog_syntax::ast::Type

source · []
pub type Type<'a> = Node<'a, TypeData<'a>>;

Implementations

Check if this is an implicit type.

Trait Implementations

Get the type name of the node.

Convert this node to the exhaustive AllNode enum.

Convert this node to an AnyNode trait object.

Walk a visitor over self.

Calling this function is equivalent to calling:

  • visitor.pre_visit_type(self)
  • self.accept(visitor)
  • visitor.post_visit_type(self);