struct in Rust

The struct keyword is used to declare a structure. Since structures are statically typed, every field in the structure must be associated with a data type. The naming rules and conventions for a structure is like that of a variable. The structure block must end with a semicolon.
```
struct Employee {
   name:String,
   company:String,
   age:u32
}
```