We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PageTableEntry
repr(transparent)
/// Sv39 结构的页表项 #[derive(Copy, Clone, Default)] pub struct PageTableEntry(usize);
这个结构是不是最好是 repr(transparent) 的?按 Rust RFC 描述,感觉 repr(transparent) 能比较好控制 PageTableEntry 的 abi?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
这个结构是不是最好是
repr(transparent)
的?按 Rust RFC 描述,感觉repr(transparent)
能比较好控制PageTableEntry
的 abi?The text was updated successfully, but these errors were encountered: