pub struct ConcreteTraitTypeId(/* private fields */);
Implementations§
source§impl ConcreteTraitTypeId
impl ConcreteTraitTypeId
pub fn new( db: &dyn SemanticGroup, concrete_trait: ConcreteTraitId, trait_type: TraitTypeId, ) -> Self
pub fn trait_type(&self, db: &dyn SemanticGroup) -> TraitTypeId
pub fn concrete_trait(&self, db: &dyn SemanticGroup) -> ConcreteTraitId
Trait Implementations§
source§impl Clone for ConcreteTraitTypeId
impl Clone for ConcreteTraitTypeId
source§fn clone(&self) -> ConcreteTraitTypeId
fn clone(&self) -> ConcreteTraitTypeId
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 ConcreteTraitTypeId
impl Debug for ConcreteTraitTypeId
source§impl<T: ?Sized + Upcast<dyn SemanticGroup + 'static>> DebugWithDb<T> for ConcreteTraitTypeId
impl<T: ?Sized + Upcast<dyn SemanticGroup + 'static>> DebugWithDb<T> for ConcreteTraitTypeId
source§impl Hash for ConcreteTraitTypeId
impl Hash for ConcreteTraitTypeId
source§impl<'a> Intern<'a, dyn SemanticGroup + 'a, ConcreteTraitTypeId> for ConcreteTraitTypeLongId
impl<'a> Intern<'a, dyn SemanticGroup + 'a, ConcreteTraitTypeId> for ConcreteTraitTypeLongId
fn intern( self, db: &(impl Upcast<dyn SemanticGroup + 'a> + ?Sized), ) -> ConcreteTraitTypeId
source§impl InternKey for ConcreteTraitTypeId
impl InternKey for ConcreteTraitTypeId
source§fn from_intern_id(salsa_id: InternId) -> Self
fn from_intern_id(salsa_id: InternId) -> Self
Create an instance of the intern-key from a
u32
value.source§fn as_intern_id(&self) -> InternId
fn as_intern_id(&self) -> InternId
Extract the
u32
with which the intern-key was created.source§impl<'a> LookupIntern<'a, dyn SemanticGroup + 'a, ConcreteTraitTypeLongId> for ConcreteTraitTypeId
impl<'a> LookupIntern<'a, dyn SemanticGroup + 'a, ConcreteTraitTypeLongId> for ConcreteTraitTypeId
fn lookup_intern( &self, db: &(impl Upcast<dyn SemanticGroup + 'a> + ?Sized), ) -> ConcreteTraitTypeLongId
source§impl PartialEq for ConcreteTraitTypeId
impl PartialEq for ConcreteTraitTypeId
source§impl<'a, Error, TRewriter: HasDb<&'a dyn SemanticGroup> + SemanticRewriter<ConcreteTraitTypeLongId, Error>> SemanticObject<TRewriter, Error> for ConcreteTraitTypeId
impl<'a, Error, TRewriter: HasDb<&'a dyn SemanticGroup> + SemanticRewriter<ConcreteTraitTypeLongId, Error>> SemanticObject<TRewriter, Error> for ConcreteTraitTypeId
fn default_rewrite( &mut self, rewriter: &mut TRewriter, ) -> Result<RewriteResult, Error>
impl Copy for ConcreteTraitTypeId
impl Eq for ConcreteTraitTypeId
impl StructuralPartialEq for ConcreteTraitTypeId
Auto Trait Implementations§
impl Freeze for ConcreteTraitTypeId
impl RefUnwindSafe for ConcreteTraitTypeId
impl Send for ConcreteTraitTypeId
impl Sync for ConcreteTraitTypeId
impl Unpin for ConcreteTraitTypeId
impl UnwindSafe for ConcreteTraitTypeId
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