pub struct UninferredGeneratedImplLongId {
pub concrete_trait: ConcreteTraitId,
pub generic_params: Vec<GenericParam>,
pub impl_items: GeneratedImplItems,
}
Expand description
Generated impls before inference, see GeneratedImplLongId for more details.
Fields§
§concrete_trait: ConcreteTraitId
§generic_params: Vec<GenericParam>
§impl_items: GeneratedImplItems
Trait Implementations§
source§impl Clone for UninferredGeneratedImplLongId
impl Clone for UninferredGeneratedImplLongId
source§fn clone(&self) -> UninferredGeneratedImplLongId
fn clone(&self) -> UninferredGeneratedImplLongId
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 DebugWithDb<dyn SemanticGroup> for UninferredGeneratedImplLongId
impl DebugWithDb<dyn SemanticGroup> for UninferredGeneratedImplLongId
source§impl Hash for UninferredGeneratedImplLongId
impl Hash for UninferredGeneratedImplLongId
source§impl<'a> Intern<'a, dyn SemanticGroup + 'a, UninferredGeneratedImplId> for UninferredGeneratedImplLongId
impl<'a> Intern<'a, dyn SemanticGroup + 'a, UninferredGeneratedImplId> for UninferredGeneratedImplLongId
fn intern( self, db: &(impl Upcast<dyn SemanticGroup + 'a> + ?Sized), ) -> UninferredGeneratedImplId
source§impl<'a> LookupIntern<'a, dyn SemanticGroup + 'a, UninferredGeneratedImplLongId> for UninferredGeneratedImplId
impl<'a> LookupIntern<'a, dyn SemanticGroup + 'a, UninferredGeneratedImplLongId> for UninferredGeneratedImplId
fn lookup_intern( &self, db: &(impl Upcast<dyn SemanticGroup + 'a> + ?Sized), ) -> UninferredGeneratedImplLongId
source§impl PartialEq for UninferredGeneratedImplLongId
impl PartialEq for UninferredGeneratedImplLongId
source§fn eq(&self, other: &UninferredGeneratedImplLongId) -> bool
fn eq(&self, other: &UninferredGeneratedImplLongId) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.source§impl<T: SemanticRewriter<ConcreteTraitId, Error> + SemanticRewriter<Vec<GenericParam>, Error> + SemanticRewriter<GeneratedImplItems, Error>, Error> SemanticObject<T, Error> for UninferredGeneratedImplLongId
impl<T: SemanticRewriter<ConcreteTraitId, Error> + SemanticRewriter<Vec<GenericParam>, Error> + SemanticRewriter<GeneratedImplItems, Error>, Error> SemanticObject<T, Error> for UninferredGeneratedImplLongId
fn default_rewrite(&mut self, rewriter: &mut T) -> Result<RewriteResult, Error>
source§impl<'a> SemanticRewriter<UninferredGeneratedImplLongId, DiagnosticAdded> for SubstitutionRewriter<'a>
impl<'a> SemanticRewriter<UninferredGeneratedImplLongId, DiagnosticAdded> for SubstitutionRewriter<'a>
fn internal_rewrite( &mut self, value: &mut UninferredGeneratedImplLongId, ) -> Result<RewriteResult, DiagnosticAdded>
fn rewrite(&mut self, value: T) -> Result<T, Error>
source§impl<'a> SemanticRewriter<UninferredGeneratedImplLongId, NoError> for Inference<'a>
impl<'a> SemanticRewriter<UninferredGeneratedImplLongId, NoError> for Inference<'a>
fn internal_rewrite( &mut self, value: &mut UninferredGeneratedImplLongId, ) -> Result<RewriteResult, NoError>
fn rewrite(&mut self, value: T) -> Result<T, Error>
impl Eq for UninferredGeneratedImplLongId
impl StructuralPartialEq for UninferredGeneratedImplLongId
Auto Trait Implementations§
impl Freeze for UninferredGeneratedImplLongId
impl RefUnwindSafe for UninferredGeneratedImplLongId
impl Send for UninferredGeneratedImplLongId
impl Sync for UninferredGeneratedImplLongId
impl Unpin for UninferredGeneratedImplLongId
impl UnwindSafe for UninferredGeneratedImplLongId
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