Consider the following struct definitions:
struct Foo {
    my_bool: bool,
    my_num: isize,
    my_string: String,
}
struct Bar (bool, isize, String);
struct Baz;
Constructing new structure values for these types is straightforward:
let foo = Foo { my_bool: true, my_num: 42, my_string: ...