Enum cairo_lang_semantic::items::imp::GenericsHeadFilter
source · pub enum GenericsHeadFilter {
NoFilter,
FirstGenericFilter(GenericArgumentHead),
NoGenerics,
}Expand description
A lookup filter on generic arguments that is not based on current inference state. This is used for caching queries.
Variants§
NoFilter
No filter is applied. When nothing is known about the generics, this will lead to a wider search.
FirstGenericFilter(GenericArgumentHead)
Generics exists and the first generic parameter has a filter. This is usually enough to considerably reduce the number of searched items.
NoGenerics
Generics must not exist.
Trait Implementations§
source§impl Clone for GenericsHeadFilter
impl Clone for GenericsHeadFilter
source§fn clone(&self) -> GenericsHeadFilter
fn clone(&self) -> GenericsHeadFilter
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 GenericsHeadFilter
impl Debug for GenericsHeadFilter
source§impl Hash for GenericsHeadFilter
impl Hash for GenericsHeadFilter
source§impl PartialEq for GenericsHeadFilter
impl PartialEq for GenericsHeadFilter
source§fn eq(&self, other: &GenericsHeadFilter) -> bool
fn eq(&self, other: &GenericsHeadFilter) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for GenericsHeadFilter
impl StructuralPartialEq for GenericsHeadFilter
Auto Trait Implementations§
impl Freeze for GenericsHeadFilter
impl RefUnwindSafe for GenericsHeadFilter
impl Send for GenericsHeadFilter
impl Sync for GenericsHeadFilter
impl Unpin for GenericsHeadFilter
impl UnwindSafe for GenericsHeadFilter
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 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<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> 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