Rust Lang Enum

enum IpAddrKind {
    V4,
    V6,
}
Flyhouse_Squarewheel