Struct cairo_lang_semantic::expr::objects::ExprConstant
source · pub struct ExprConstant {
pub constant_id: ConstantId,
pub ty: TypeId,
pub stable_ptr: ExprPtr,
}Fields§
§constant_id: ConstantId§ty: TypeId§stable_ptr: ExprPtrTrait Implementations§
source§impl Clone for ExprConstant
impl Clone for ExprConstant
source§fn clone(&self) -> ExprConstant
fn clone(&self) -> ExprConstant
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 ExprConstant
impl Debug for ExprConstant
source§impl<'a, T: ?Sized + Upcast<ExprFormatter<'a>>> DebugWithDb<T> for ExprConstant
impl<'a, T: ?Sized + Upcast<ExprFormatter<'a>>> DebugWithDb<T> for ExprConstant
source§impl Hash for ExprConstant
impl Hash for ExprConstant
source§impl PartialEq<ExprConstant> for ExprConstant
impl PartialEq<ExprConstant> for ExprConstant
source§fn eq(&self, other: &ExprConstant) -> bool
fn eq(&self, other: &ExprConstant) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl<T: SemanticRewriter<ConstantId, Error> + SemanticRewriter<TypeId, Error>, Error> SemanticObject<T, Error> for ExprConstant
impl<T: SemanticRewriter<ConstantId, Error> + SemanticRewriter<TypeId, Error>, Error> SemanticObject<T, Error> for ExprConstant
fn default_rewrite(self, rewriter: &mut T) -> Result<Self, Error>
source§impl<'a> SemanticRewriter<ExprConstant, NoError> for Inference<'a>
impl<'a> SemanticRewriter<ExprConstant, NoError> for Inference<'a>
fn rewrite(&mut self, value: ExprConstant) -> Result<ExprConstant, NoError>
impl Eq for ExprConstant
impl StructuralEq for ExprConstant
impl StructuralPartialEq for ExprConstant
Auto Trait Implementations§
impl RefUnwindSafe for ExprConstant
impl Send for ExprConstant
impl Sync for ExprConstant
impl Unpin for ExprConstant
impl UnwindSafe for ExprConstant
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<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.