Enum hir_ty::ValueTyDefId
source · 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 copy 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
impl 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,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)§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<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