Recently, I just read some code like below, but I can not find anything about More
keywords in the API, what's the meaning of More
in Rust?
pub struct List {
head: Link,
}
enum Link {
Empty,
More(Box<Node>),
}
struct Node {
elem: i32,
next: Link,
}