unit type

https://rust-book.cs.brown.edu/ch03-02-data-types.html

The tuple without any values has a special name, unit. This value and its corresponding type are both written () and represent an empty value or an empty return type. Expressions implicitly return the unit value if they don’t return any other value.

튜플에 아무 거시기가 없는 거시기의 이름을 유닛이라고 부릅니다. 이 값과 타입은 () 으로 표현되며 비어있는 값 또는 비어있는 리턴을 의미합니다. 표현식은 암묵적으로 () 을 리턴합니다 만약 그 표현식이 아무것도 리턴하지 않는다면.