-
Notifications
You must be signed in to change notification settings - Fork 12.7k
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
AsFd
and AsRawFd
are implemented for Arc<T>
, but not Rc<T>
#105931
Comments
compiler-errors
added a commit
to compiler-errors/rust
that referenced
this issue
Feb 9, 2023
Implement `AsFd` and `AsRawFd` for `Rc` Fixes rust-lang#105931.
compiler-errors
added a commit
to compiler-errors/rust
that referenced
this issue
Feb 9, 2023
Implement `AsFd` and `AsRawFd` for `Rc` Fixes rust-lang#105931.
compiler-errors
added a commit
to compiler-errors/rust
that referenced
this issue
Feb 9, 2023
Implement `AsFd` and `AsRawFd` for `Rc` Fixes rust-lang#105931.
RalfJung
pushed a commit
to RalfJung/miri
that referenced
this issue
Feb 9, 2023
Implement `AsFd` and `AsRawFd` for `Rc` Fixes rust-lang/rust#105931.
thomcc
pushed a commit
to tcdi/postgrestd
that referenced
this issue
May 31, 2023
thomcc
pushed a commit
to tcdi/postgrestd
that referenced
this issue
May 31, 2023
Implement `AsFd` and `AsRawFd` for `Rc` Fixes rust-lang/rust#105931.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I was looking through the list of things that implement
AsFd
, and noticed there's an implementation forArc<T>
whereT: AsFd
, but not forRc
. I don't think there's any subtle any subtle reason this couldn't/shouldn't be implemented forRc
too?The text was updated successfully, but these errors were encountered: