Re: [RFC PATCH v3 3/5] rust: io_uring: introduce rust abstraction for io-uring cmd
From: Daniel Almeida
Date: Fri Aug 29 2025 - 12:12:19 EST
[…]
>>
>>> + #[inline]
>>> + pub unsafe fn from_raw<'a>(ptr: *const bindings::io_uring_sqe) -> &'a IoUringSqe {
>>
>> Private or pub(crate) at best.
>
> Okay. pub(crate)
Try to make things private and reach for pub(crate) here only when it’s actually needed.
— Daniel