rust-lang / rust-lang/rustc_public

Add an API to check if a `Ty` implements a trait

Open
#67 1 comment 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Dominant language
Rust
Stars
125
Forks
19
PR merge metrics
No merged PRs in 30d

Description

It can be handy to have an API that checks if a type implements a trait to not. Basic use cases include checking if the type implements some of the language-built-in marker traits like Copy.
The API can be added to Ty as follows.

fn implements(&self, def: TraitDef, generics: GenericArgs, param_env: ???) -> bool;

Contributor guide

No contributing guide indexed for this repository

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

Research direction

Start by locating Ty and existing handling for TraitDef and GenericArgs in rustc_public, then determine what param_env must represent for trait queries. Done means exposing the proposed implements API and confirming it can report whether a Ty implements marker traits such as Copy.

Written by the indexing model from the issue text.

Assessment

Tech stack
rust
Domain
compilers
Issue type
Feature
Difficulty
5/5
Estimated time
Over a week
Activity status
Stale
Clarity
Mostly clear
Newbie friendliness
35/100

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.