Re: [PATCH v13 1/1] rust: interop: Add list module for C linked list interface
From: Alice Ryhl
Date: Wed Mar 18 2026 - 10:38:20 EST
On Wed, Mar 18, 2026 at 3:21 PM Miguel Ojeda
<miguel.ojeda.sandonis@xxxxxxxxx> wrote:
> [*] I would have preferred a middle ground like modules being inside
> but repeating the folder name, e.g. `.../pci/pci.rs`, but I doubt that
> will ever be supported upstream since one probably wants to support
> the other ways at the same time.
In principle this is possible using
#[path = "pci/pci.rs"]
pub mod pci;
Alice