-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rust: Associated types #19214
Open
paldepind
wants to merge
2
commits into
github:main
Choose a base branch
from
paldepind:rust-ti-associated
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Rust: Associated types #19214
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -329,38 +329,118 @@ mod function_trait_bounds { | |
} | ||
|
||
mod trait_associated_type { | ||
#[derive(Debug)] | ||
struct Wrapper<A> { | ||
field: A, | ||
} | ||
|
||
impl<A> Wrapper<A> { | ||
fn unwrap(self) -> A { | ||
self.field // $ fieldof=Wrapper | ||
} | ||
} | ||
|
||
trait MyTrait { | ||
type AssociatedType; | ||
|
||
// MyTrait::m1 | ||
fn m1(self) -> Self::AssociatedType; | ||
|
||
fn m2(self) -> Self::AssociatedType | ||
where | ||
Self::AssociatedType: Default, | ||
Self: Sized, | ||
{ | ||
self.m1(); // $ method=MyTrait::m1 type=self.m1():AssociatedType | ||
Self::AssociatedType::default() | ||
} | ||
} | ||
|
||
trait MyTraitAssoc2 { | ||
type GenericAssociatedType<AssociatedParam>; | ||
|
||
// MyTrait::put | ||
fn put<A>(&self, a: A) -> Self::GenericAssociatedType<A>; | ||
|
||
fn putTwo<A>(&self, a: A, b: A) -> Self::GenericAssociatedType<A> { | ||
self.put(a); // $ method=MyTrait::put | ||
self.put(b) // $ method=MyTrait::put | ||
} | ||
} | ||
|
||
#[derive(Debug, Default)] | ||
struct S; | ||
|
||
#[derive(Debug, Default)] | ||
struct S2; | ||
|
||
#[derive(Debug, Default)] | ||
struct AT; | ||
|
||
impl MyTrait for S { | ||
type AssociatedType = S; | ||
type AssociatedType = AT; | ||
|
||
// S::m1 | ||
fn m1(self) -> Self::AssociatedType { | ||
S | ||
AT | ||
} | ||
} | ||
|
||
impl MyTraitAssoc2 for S { | ||
// Associated type with a type parameter | ||
type GenericAssociatedType<AssociatedParam> = Wrapper<AssociatedParam>; | ||
|
||
// S::put | ||
fn put<A>(&self, a: A) -> Wrapper<A> { | ||
Wrapper { field: a } | ||
} | ||
} | ||
|
||
impl MyTrait for S2 { | ||
// Associated type definition with a type argument | ||
type AssociatedType = Wrapper<S2>; | ||
|
||
fn m1(self) -> Self::AssociatedType { | ||
Wrapper { field: self } | ||
} | ||
} | ||
|
||
// NOTE: This implementation is just to make it possible to call `m2` on `S2.` | ||
impl Default for Wrapper<S2> { | ||
fn default() -> Self { | ||
Wrapper { field: S2 } | ||
} | ||
} | ||
|
||
// Function that returns an associated type from a trait bound | ||
fn g<T: MyTrait>(thing: T) -> <T as MyTrait>::AssociatedType { | ||
thing.m1() // $ method=MyTrait::m1 | ||
} | ||
|
||
pub fn f() { | ||
let x = S; | ||
println!("{:?}", x.m1()); // $ method=S::m1 | ||
let x1 = S; | ||
// Call to method in `impl` block | ||
println!("{:?}", x1.m1()); // $ method=S::m1 type=x1.m1():AT | ||
|
||
let x = S; | ||
println!("{:?}", x.m2()); // $ method=m2 | ||
let x2 = S; | ||
// Call to default method in `trait` block | ||
let y = x2.m2(); // $ method=m2 type=y:AT | ||
println!("{:?}", y); | ||
|
||
let x3 = S; | ||
// Call to the method in `impl` block | ||
println!("{:?}", x3.put(1).unwrap()); // $ method=S::put method=unwrap | ||
|
||
// Call to default implementation in `trait` block | ||
println!("{:?}", x3.putTwo(2, 3).unwrap()); // $ method=putTwo MISSING: method=unwrap | ||
|
||
let x4 = g(S); // $ MISSING: type=x4:AT | ||
println!("{:?}", x4); | ||
|
||
let x5 = S2; | ||
println!("{:?}", x5.m1()); // $ method=m1 MISSING: type=x5.m1():A.S2 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This missing type is probably worth fixing. But since it's not for a method in a |
||
let x6 = S2; | ||
println!("{:?}", x6.m2()); // $ method=m2 type=x6.m2():A.S2 | ||
} | ||
} | ||
|
||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Check warning
Code scanning / CodeQL
Comment has repeated word Warning