Skip to content
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

RFC: 'task lifetime #8726

Closed
huonw opened this issue Aug 24, 2013 · 7 comments
Closed

RFC: 'task lifetime #8726

huonw opened this issue Aug 24, 2013 · 7 comments
Labels
A-lifetimes Area: Lifetimes / regions

Comments

@huonw
Copy link
Member

huonw commented Aug 24, 2013

Add a 'task lifetime that represents things that live as long as the task, e.g. borrowing a @T would give a &'task T.

I haven't met any instance where I really needed this; but @bblum said he'd be interested, and I have met a few lifetime issues with borrowing things out of @ in a chain (but this is probably just #3511).

@bblum
Copy link
Contributor

bblum commented Aug 24, 2013

My use case would be in reading a task's name. It would be fn() -> &'task str.

@bblum
Copy link
Contributor

bblum commented Aug 24, 2013

I don't think it would be safe for borrowing a @T into a &'task T but you could definitely put the latter inside one of the former.

The main extra capability would be to have a lifetime that fulfills 'static but does not fulfill Send.

@graydon
Copy link
Contributor

graydon commented Aug 24, 2013

Yeah, certain tls interfaces (that internally promise not to delete their referent) would also qualify.

@emberian
Copy link
Member

cc @nikomatsakis @pnkfelix

@nikomatsakis
Copy link
Contributor

seems like a post 1.0 thing to me, but I'm not particularly opposed to the idea

@eddyb
Copy link
Member

eddyb commented Mar 2, 2014

Would be nice to be able to do type IdentInterner = &'task StrInterner; and remove that @.
The TLD only really needs 'static without Send, maybe there's a simple way of achieving that?

@rust-highfive
Copy link
Contributor

This issue has been moved to the RFCs repo: rust-lang/rfcs#295

xFrednet pushed a commit to xFrednet/rust that referenced this issue May 21, 2022
Fix `match_single_binding` suggestion for assign expressions

changelog: Fix suggestion for assign expressions in [`match_single_binding`]
closes: rust-lang#8723
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-lifetimes Area: Lifetimes / regions
Projects
None yet
Development

No branches or pull requests

7 participants