结构体

语法

结构体 :

      结构体结构体

   | 元组结构体

结构体结构体 :

   struct 标识符  泛型参数? Where 子句? ( { 结构体字段? } | ; )

元组结构体 :

   struct 标识符  泛型参数? ( 元组字段? ) Where 子句? ;

结构体字段 :

   结构体字段 (, 结构体字段)* ,?

结构体字段 :

   外部属性*

   可见性?

   标识符 : 类型

元组字段 :

   元组字段 (, 元组字段)* ,?

元组字段 :

   外部属性*

   可见性?

   类型

结构体是一种使用关键字 struct 定义的名义结构体类型

struct 项目及其用法的示例

#![allow(unused)]
fn main() {
struct Point {x: i32, y: i32}
let p = Point {x: 10, y: 11};
let px: i32 = p.x;
}

元组结构体是一种名义元组类型,也使用关键字 struct 定义。例如

#![allow(unused)]
fn main() {
struct Point(i32, i32);
let p = Point(10, 11);
let px: i32 = match p { Point(x, _) => x };
}

类单元结构体是一种没有任何字段的结构体,通过完全省略字段列表来定义。这样的结构体隐式地定义了一个与其类型同名的常量。例如

#![allow(unused)]
fn main() {
struct Cookie;
let c = [Cookie, Cookie {}, Cookie, Cookie {}];
}

等价于

#![allow(unused)]
fn main() {
struct Cookie {}
const Cookie: Cookie = Cookie {};
let c = [Cookie, Cookie {}, Cookie, Cookie {}];
}

结构体的精确内存布局未指定。可以使用 repr 属性指定特定的布局。