Struct moore_svlog::hir::TypeParam [−][src]
pub struct TypeParam {
pub id: NodeId,
pub name: Spanned<Name>,
pub span: Span,
pub local: bool,
pub default: Option<NodeId>,
}
Expand description
A type parameter.
Fields
id: NodeId
name: Spanned<Name>
span: Span
local: bool
default: Option<NodeId>
Trait Implementations
Obtain a span which can be used to refer to this node in error messages
presented to humans. This will generally be the name for things like
entities, processes, and variables. Defaults to return whatever span()
returns. Read more