tokio-rs / io-uring

The `io_uring` library for Rust
Apache License 2.0
1.16k stars 129 forks source link

Implement `AsFd` for all entry sizes #254

Closed oxalica closed 7 months ago

oxalica commented 7 months ago

It seems to be a merge error of two concurrent PRs #133 and #134, which results in AsFd only implemented specifically on IoUring<Entry, Entry> rather than generically. This PR generalized that impl, also to align with AsRawFd impl.

quininer commented 7 months ago

Thank you!