-
Notifications
You must be signed in to change notification settings - Fork 13.4k
AsFd
and AsRawFd
are implemented for Arc<T>
, but not Rc<T>
#105931
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
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.
# for free
to join this conversation on GitHub.
Already have an account?
# 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: