From ba5b120a7badc9efe271f8b8f037c1e1baffde45 Mon Sep 17 00:00:00 2001 From: nomicon-kr Date: Tue, 25 Jun 2024 13:29:31 +0900 Subject: [PATCH] Update repr-rust.md --- src/repr-rust.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/repr-rust.md b/src/repr-rust.md index 5275b23..0572fa9 100644 --- a/src/repr-rust.md +++ b/src/repr-rust.md @@ -1,6 +1,8 @@ # repr(Rust) -First and foremost, all types have an alignment specified in bytes. The +첫번째로 그리고 가장 중요하게도, 모든 타입은 바이트로 특정되는 정렬선이 있습니다. + +The alignment of a type specifies what addresses are valid to store the value at. A value with alignment `n` must only be stored at an address that is a multiple of `n`. So alignment 2 means you must be stored at an even address, and 1 means