[]Enum moore_vhdl::score::Def

pub enum Def {
    Arch(ArchRef),
    Cfg(CfgRef),
    Ctx(CtxRef),
    Entity(EntityRef),
    Lib(LibRef),
    Pkg(PkgDeclRef),
    PkgInst(PkgInstRef),
    BuiltinPkg(BuiltinPkgRef),
    BuiltinOp(BuiltinOpRef),
    Type(TypeDeclRef),
    Subtype(SubtypeDeclRef),
    Enum(EnumRef),
    Unit(UnitRef),
    Const(ConstDeclRef),
    Signal(SignalRef),
    File(FileDeclRef),
    Var(VarDeclRef),
    Alias(AliasDeclRef),
    Comp(CompDeclRef),
    Attr(AttrDeclRef),
    GroupTemp(GroupTempRef),
    Group(GroupDeclRef),
    Subprog(SubprogDeclRef),
    SubprogInst(SubprogInstRef),
    Stmt(StmtRef),
}

Variants

Arch(ArchRef)
Cfg(CfgRef)
Ctx(CtxRef)
Entity(EntityRef)
Lib(LibRef)
PkgInst(PkgInstRef)
BuiltinPkg(BuiltinPkgRef)
BuiltinOp(BuiltinOpRef)
Enum(EnumRef)
Unit(UnitRef)
Signal(SignalRef)
GroupTemp(GroupTempRef)
SubprogInst(SubprogInstRef)
Stmt(StmtRef)

Trait Implementations

impl Clone for Def

impl Copy for Def

impl Debug for Def

impl Decodable for Def

impl<'t, C: DiagEmitter, S> DefSpecificTermContext<'t, Def> for TermContext<C, S, Def>[src]

impl Encodable for Def

impl Eq for Def

impl From<AliasDeclRef> for Def

impl From<ArchRef> for Def

impl From<AttrDeclRef> for Def

impl From<BuiltinOpRef> for Def

impl From<BuiltinPkgRef> for Def

impl From<CfgRef> for Def

impl From<CompDeclRef> for Def

impl From<ConstDeclRef> for Def

impl From<CtxRef> for Def

impl From<EntityRef> for Def

impl From<EnumRef> for Def

impl From<FileDeclRef> for Def

impl From<GroupDeclRef> for Def

impl From<GroupTempRef> for Def

impl From<LibRef> for Def

impl From<PkgDeclRef> for Def

impl From<PkgInstRef> for Def

impl From<SignalRef> for Def

impl From<StmtRef> for Def

impl From<SubprogDeclRef> for Def

impl From<SubprogInstRef> for Def

impl From<SubtypeDeclRef> for Def

impl From<TypeDeclRef> for Def

impl From<TypeMarkRef> for Def[src]

impl From<UnitRef> for Def

impl From<VarDeclRef> for Def

impl Hash for Def

impl Into<NodeId> for Def

impl Ord for Def

impl PartialEq<Def> for Def

impl PartialOrd<Def> for Def

impl<'t, 'sbc, 'lazy, 'sb, 'ast, 'ctx> ScopeSpecificTermContext<'t, ScopeRef, Def> for TermContext<&'sbc ScoreContext<'lazy, 'sb, 'ast, 'ctx>, ScopeRef, Def> where
    'lazy: 'sbc,
    'sb: 'lazy,
    'ast: 'sb,
    'ctx: 'sb, 
[src]

fn termify_name_in_scope(
    &self,
    name: Spanned<ResolvableName>,
    scope: ScopeRef
) -> Result<Spanned<Term<'t>>>
[src]

Map a resolvable name to a term, resolving it within a scope.

impl StructuralEq for Def

impl StructuralPartialEq for Def

Auto Trait Implementations

impl RefUnwindSafe for Def

impl Send for Def

impl Sync for Def

impl Unpin for Def

impl UnwindSafe for Def

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> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized
[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.