pub enum ConstValue {
Int(BigInt, TypeId),
Struct(Vec<ConstValue>, TypeId),
Enum(ConcreteVariant, Box<ConstValue>),
NonZero(Box<ConstValue>),
Boxed(Box<ConstValue>),
Generic(GenericParamId),
ImplConstant(ImplConstantId),
TraitConstant(TraitConstantId),
Var(ConstVar, TypeId),
Missing(DiagnosticAdded),
}
Expand description
A constant value.
Variants§
Int(BigInt, TypeId)
Struct(Vec<ConstValue>, TypeId)
Enum(ConcreteVariant, Box<ConstValue>)
NonZero(Box<ConstValue>)
Boxed(Box<ConstValue>)
Generic(GenericParamId)
ImplConstant(ImplConstantId)
TraitConstant(TraitConstantId)
Var(ConstVar, TypeId)
Missing(DiagnosticAdded)
A missing value, used in cases where the value is not known due to diagnostics.
Implementations§
source§impl ConstValue
impl ConstValue
sourcepub fn is_fully_concrete(&self, db: &dyn SemanticGroup) -> bool
pub fn is_fully_concrete(&self, db: &dyn SemanticGroup) -> bool
Returns true if the const does not depend on any generics.
sourcepub fn is_var_free(&self, db: &dyn SemanticGroup) -> bool
pub fn is_var_free(&self, db: &dyn SemanticGroup) -> bool
Returns true if the const does not contain any inference variables.
sourcepub fn ty(&self, db: &dyn SemanticGroup) -> Maybe<TypeId>
pub fn ty(&self, db: &dyn SemanticGroup) -> Maybe<TypeId>
Returns the type of the const.
Trait Implementations§
source§impl Clone for ConstValue
impl Clone for ConstValue
source§fn clone(&self) -> ConstValue
fn clone(&self) -> ConstValue
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 ConstValue
impl Debug for ConstValue
source§impl<Db: ?Sized + Upcast<dyn SemanticGroup + 'static>> DebugWithDb<Db> for ConstValue
impl<Db: ?Sized + Upcast<dyn SemanticGroup + 'static>> DebugWithDb<Db> for ConstValue
source§impl Hash for ConstValue
impl Hash for ConstValue
source§impl<'a> Intern<'a, dyn SemanticGroup + 'a, ConstValueId> for ConstValue
impl<'a> Intern<'a, dyn SemanticGroup + 'a, ConstValueId> for ConstValue
fn intern( self, db: &(impl Upcast<dyn SemanticGroup + 'a> + ?Sized), ) -> ConstValueId
source§impl<'a> LookupIntern<'a, dyn SemanticGroup + 'a, ConstValue> for ConstValueId
impl<'a> LookupIntern<'a, dyn SemanticGroup + 'a, ConstValue> for ConstValueId
fn lookup_intern( &self, db: &(impl Upcast<dyn SemanticGroup + 'a> + ?Sized), ) -> ConstValue
source§impl PartialEq for ConstValue
impl PartialEq for ConstValue
source§impl<T: SemanticRewriter<TypeId, Error> + SemanticRewriter<Vec<ConstValue>, Error> + SemanticRewriter<ConcreteVariant, Error> + SemanticRewriter<Box<ConstValue>, Error> + SemanticRewriter<ImplConstantId, Error> + SemanticRewriter<TraitConstantId, Error> + SemanticRewriter<ConstVar, Error>, Error> SemanticObject<T, Error> for ConstValue
impl<T: SemanticRewriter<TypeId, Error> + SemanticRewriter<Vec<ConstValue>, Error> + SemanticRewriter<ConcreteVariant, Error> + SemanticRewriter<Box<ConstValue>, Error> + SemanticRewriter<ImplConstantId, Error> + SemanticRewriter<TraitConstantId, Error> + SemanticRewriter<ConstVar, Error>, Error> SemanticObject<T, Error> for ConstValue
fn default_rewrite(&mut self, rewriter: &mut T) -> Result<RewriteResult, Error>
source§impl SemanticRewriter<ConstValue, DiagnosticAdded> for SubstitutionRewriter<'_>
impl SemanticRewriter<ConstValue, DiagnosticAdded> for SubstitutionRewriter<'_>
fn internal_rewrite(&mut self, value: &mut ConstValue) -> Maybe<RewriteResult>
fn rewrite(&mut self, value: T) -> Result<T, Error>
source§impl SemanticRewriter<ConstValue, NoError> for Inference<'_>
impl SemanticRewriter<ConstValue, NoError> for Inference<'_>
fn internal_rewrite( &mut self, value: &mut ConstValue, ) -> Result<RewriteResult, NoError>
fn rewrite(&mut self, value: T) -> Result<T, Error>
impl Eq for ConstValue
impl StructuralPartialEq for ConstValue
Auto Trait Implementations§
impl Freeze for ConstValue
impl RefUnwindSafe for ConstValue
impl Send for ConstValue
impl Sync for ConstValue
impl Unpin for ConstValue
impl UnwindSafe for ConstValue
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
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§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