mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 00:34:06 +00:00
Add missing #[inline] on AsFd impl for sys::unix::fs::File
This operation should be extremely cheap, at most the mov of the underlying file descriptor, but due to this missing #[inline] it is currently a function call.
This commit is contained in:
parent
75d731eee9
commit
133aa56a84
@ -1391,6 +1391,7 @@ impl FromInner<FileDesc> for File {
|
||||
}
|
||||
|
||||
impl AsFd for File {
|
||||
#[inline]
|
||||
fn as_fd(&self) -> BorrowedFd<'_> {
|
||||
self.0.as_fd()
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user