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
まず、enumは閉じているか閉じていないかの2択がある。
ここで、「閉じている」とは「基底となる表現の型のインスタンスがenumの有効な要素であるとは限らない」という意味である。
例えば、以下の例を考える。
#[repr(u8)] enum X { Y = 1 } fn main() { let b = 2; // 2 is not valid discriminator; UB! let x: X = unsafe { core::mem::transmute(b) }; }
enum classやenum struct ↩
enum class
enum struct
https://stackoverflow.com/a/63316213 ↩
The text was updated successfully, but these errors were encountered:
No branches or pull requests
まず、enumは閉じているか閉じていないかの2択がある。
ここで、「閉じている」とは「基底となる表現の型のインスタンスがenumの有効な要素であるとは限らない」という意味である。
例えば、以下の例を考える。
Footnotes
enum class
やenum struct
↩https://stackoverflow.com/a/63316213 ↩
The text was updated successfully, but these errors were encountered: