rust: add enum struct and unit struct

This commit is contained in:
Marcello 2022-08-19 14:19:10 +02:00
parent 5449280640
commit 9004ec2e12

View file

@ -474,6 +474,8 @@ struct Struct {
... ...
} }
struct UnitStruct; // no field, useful in generics
{ x: Type, y: Type } // anonymous struct { x: Type, y: Type } // anonymous struct
``` ```
@ -484,26 +486,15 @@ let mut var = Struct {
field: value, field: value,
... ...
}; };
fn build_struct(param: Type, ...) -> Struct {
// the constructed struct is returned since it's the last expression
Struct {
field: param,
...
}
}
``` ```
### Field Init Shorthand ### Field Init Shorthand
```rs ```rs
fn build_struct(field: Type, ...) -> Struct { let mut var = Struct {
// the constructed struct is returned since it's the last expression field, // shortened form since func param is named as the struct's field
Struct { ...
field, // shortened form since func param is named as the struct's field };
...
}
}
var.field = value; // member access var.field = value; // member access
``` ```
@ -513,7 +504,6 @@ var.field = value; // member access
### Struct Update Syntax ### Struct Update Syntax
```rs ```rs
let struct1 = Struct { let struct1 = Struct {
field1: value, field1: value,
field2: value, field2: value,
@ -771,14 +761,16 @@ They describe situations that do not require explicit lifetime annotations.
// enum definition // enum definition
enum Enum enum Enum
{ {
Variant1(Type, ...), // each variant can have different types (even structs and enums) and amounts of associated data Variant1,
Variant2, Variant2(Type, ...), // each variant can have different types (even structs and enums) and amounts of associated data
Variant3 { x: u8, y: u8 } // c-like struct
... ...
} }
// value assignment // value assignment
let e: Enum = Enum::Variant1; let e: Enum = Enum::Variant1;
let e: Enum = Enum::Variant2(arg, ...); // variant w/ data let e: Enum = Enum::Variant2(arg, ...); // variant w/ data
let e: Enum = Enum::Variant3 { x = 1, y = 0};
// methods on enum // methods on enum
impl Enum impl Enum
@ -787,6 +779,7 @@ impl Enum
match self { match self {
Enum::Variant1 => <expr> Enum::Variant1 => <expr>
Enum::Variant2(arg) => <expr>, Enum::Variant2(arg) => <expr>,
Enum::Variant3 { x = 1, y = 0} => <expr>;
} }
} }
} }