Expand description
Encapsulates implementation details for a self-referencing struct. This module is only visible when using βdocument-private-items.
StructsΒ§
- Borrowed
Fields π - A struct for holding immutable references to all tail and immutably borrowed fields in an instance of
Chain
. - Borrowed
MutFields π - A struct for holding mutable references to all tail fields in an instance of
Chain
. - Chain
- The self-referencing struct.
- Chain
Async πBuilder - A more verbose but stable way to construct self-referencing structs. It is comparable to using
StructName { field1: value1, field2: value2 }
rather thanStructName::new(value1, value2)
. This has the dual benefit of making your code both easier to refactor and more readable. Callbuild()
to construct the actual struct. The fields of this struct should be used as follows: - Chain
Async πSend Builder - A more verbose but stable way to construct self-referencing structs. It is comparable to using
StructName { field1: value1, field2: value2 }
rather thanStructName::new(value1, value2)
. This has the dual benefit of making your code both easier to refactor and more readable. Callbuild()
to construct the actual struct. The fields of this struct should be used as follows: - Chain
Async πSend TryBuilder - A more verbose but stable way to construct self-referencing structs. It is comparable to using
StructName { field1: value1, field2: value2 }
rather thanStructName::new(value1, value2)
. This has the dual benefit of making your code both easier to refactor and more readable. Calltry_build()
ortry_build_or_recover()
to construct the actual struct. The fields of this struct should be used as follows: - Chain
Async πTryBuilder - A more verbose but stable way to construct self-referencing structs. It is comparable to using
StructName { field1: value1, field2: value2 }
rather thanStructName::new(value1, value2)
. This has the dual benefit of making your code both easier to refactor and more readable. Calltry_build()
ortry_build_or_recover()
to construct the actual struct. The fields of this struct should be used as follows: - Chain
Builder π - A more verbose but stable way to construct self-referencing structs. It is comparable to using
StructName { field1: value1, field2: value2 }
rather thanStructName::new(value1, value2)
. This has the dual benefit of making your code both easier to refactor and more readable. Callbuild()
to construct the actual struct. The fields of this struct should be used as follows: - Chain
Internal π - Chain
TryBuilder π - A more verbose but stable way to construct self-referencing structs. It is comparable to using
StructName { field1: value1, field2: value2 }
rather thanStructName::new(value1, value2)
. This has the dual benefit of making your code both easier to refactor and more readable. Calltry_build()
ortry_build_or_recover()
to construct the actual struct. The fields of this struct should be used as follows: - Heads π
- A struct which contains only the head fields of
Chain
.