pub enum ValueTyDefId {
FunctionId(FunctionId),
StructId(StructId),
UnionId(UnionId),
EnumVariantId(EnumVariantId),
ConstId(ConstId),
StaticId(StaticId),
}Variants§
FunctionId(FunctionId)
StructId(StructId)
UnionId(UnionId)
EnumVariantId(EnumVariantId)
ConstId(ConstId)
StaticId(StaticId)
Trait Implementations§
Source§impl Clone for ValueTyDefId
impl Clone for ValueTyDefId
Source§fn clone(&self) -> ValueTyDefId
fn clone(&self) -> ValueTyDefId
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ValueTyDefId
impl Debug for ValueTyDefId
Source§impl From<ConstId> for ValueTyDefId
impl From<ConstId> for ValueTyDefId
Source§fn from(it: ConstId) -> ValueTyDefId
fn from(it: ConstId) -> ValueTyDefId
Converts to this type from the input type.
Source§impl From<EnumVariantId> for ValueTyDefId
impl From<EnumVariantId> for ValueTyDefId
Source§fn from(it: EnumVariantId) -> ValueTyDefId
fn from(it: EnumVariantId) -> ValueTyDefId
Converts to this type from the input type.
Source§impl From<FunctionId> for ValueTyDefId
impl From<FunctionId> for ValueTyDefId
Source§fn from(it: FunctionId) -> ValueTyDefId
fn from(it: FunctionId) -> ValueTyDefId
Converts to this type from the input type.
Source§impl From<StaticId> for ValueTyDefId
impl From<StaticId> for ValueTyDefId
Source§fn from(it: StaticId) -> ValueTyDefId
fn from(it: StaticId) -> ValueTyDefId
Converts to this type from the input type.
Source§impl From<StructId> for ValueTyDefId
impl From<StructId> for ValueTyDefId
Source§fn from(it: StructId) -> ValueTyDefId
fn from(it: StructId) -> ValueTyDefId
Converts to this type from the input type.
Source§impl From<UnionId> for ValueTyDefId
impl From<UnionId> for ValueTyDefId
Source§fn from(it: UnionId) -> ValueTyDefId
fn from(it: UnionId) -> ValueTyDefId
Converts to this type from the input type.
Source§impl Hash for ValueTyDefId
impl Hash for ValueTyDefId
Source§impl PartialEq for ValueTyDefId
impl PartialEq for ValueTyDefId
Source§impl SalsaStructInDb for ValueTyDefId
impl SalsaStructInDb for ValueTyDefId
type MemoIngredientMap = MemoIngredientIndices
Source§fn lookup_ingredient_index(__zalsa: &Zalsa) -> IngredientIndices
fn lookup_ingredient_index(__zalsa: &Zalsa) -> IngredientIndices
Lookup or create ingredient indices. Read more
Source§fn entries(zalsa: &Zalsa) -> impl Iterator<Item = DatabaseKeyIndex> + '_
fn entries(zalsa: &Zalsa) -> impl Iterator<Item = DatabaseKeyIndex> + '_
Returns the IDs of any instances of this struct in the database.
Source§fn cast(id: Id, type_id: TypeId) -> Option<Self>
fn cast(id: Id, type_id: TypeId) -> Option<Self>
Plumbing to support nested salsa supertypes. Read more
Source§unsafe fn memo_table(
zalsa: &Zalsa,
id: Id,
current_revision: Revision,
) -> MemoTableWithTypes<'_>
unsafe fn memo_table( zalsa: &Zalsa, id: Id, current_revision: Revision, ) -> MemoTableWithTypes<'_>
Return the memo table associated with
id. Read moreimpl Copy for ValueTyDefId
impl Eq for ValueTyDefId
impl StructuralPartialEq for ValueTyDefId
Auto Trait Implementations§
impl Freeze for ValueTyDefId
impl RefUnwindSafe for ValueTyDefId
impl Send for ValueTyDefId
impl Sync for ValueTyDefId
impl Unpin for ValueTyDefId
impl UnwindSafe for ValueTyDefId
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T, R> CollectAndApply<T, R> for T
impl<T, R> CollectAndApply<T, R> for T
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
fn into_either(self, into_left: bool) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self> ⓘ
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more