ca67b1da37
- Rebase all Red Bear kernel changes onto upstream master (4d5d36d4).
- Update version to 0.5.12+rb0.3.0 and add Red Bear author attribution.
- Switch redox_syscall direct dependency to local fork path (../syscall).
- Bump rust-toolchain.toml to nightly-2026-05-24.
- Regenerate Cargo.lock for +rb0.3.0 suffixes and path deps.
7 lines
135 B
Rust
7 lines
135 B
Rust
use alloc::boxed::Box;
|
|
use rmm::PhysicalAddress;
|
|
|
|
pub trait Rxsdt {
|
|
fn iter(&self) -> Box<dyn Iterator<Item = PhysicalAddress>>;
|
|
}
|