diff --git a/src/repr-rust.md b/src/repr-rust.md index a53cabc..3a4879a 100644 --- a/src/repr-rust.md +++ b/src/repr-rust.md @@ -126,7 +126,7 @@ struct FooRepr { 하나의 `()`을 가진 형(예를 들어 `None`)과 (중첩될 수도 있는) 널이 될 수 없는 포인터를 가진 형(예를 들어 `Some(&T)`)이 있는 열거형은 태그가 필요하지 않습니다. 널 포인터는 안전하게 `()` 형(`None`)으로 해석할 수 있거든요. 최종적인 결과는, 예를 들어, 이랗게 됩니다: `size_of::>() == size_of::<&T>()` - +러스트에는 널이 될 수 없는 타입이나, 이를 포함하는 타입들이 많이 있는데, There are many types in Rust that are, or contain, non-nullable pointers such as `Box`, `Vec`, `String`, `&T`, and `&mut T`. Similarly, one can imagine