Expand description
Type-level utilities for guiding the construction of Transaction.
Structs§
- InConstruction
- Indicates that a
Transactionis under construction, and its body may still be modified. - Ready
ForSigning - Indicates that a
Transaction’s body is now complete, and the transaction is either awaiting signatures, or fully signed. In particular, methods such asTransaction::signandTransaction::idbecomes available. - Unknown
- Indicates that a
Transactionis in an unknown state; only some methods will be available.
Traits§
- IsTransaction
Body State - Restricts the inhabitants that a generic parameter can take. This is used in the context of
Transactionto allow some methods to be always accessible, or restricted to a particular state.