BuilderState
Generic types: | T |
Represents the state of a builder. It can be one of the following:
- BuilderPending: The builder is still in progress and the result is not yet available.
- BuilderDone: The builder has finished and the result is available.
- BuilderError: The builder has encountered an error.
Presentation
type BuilderState = BuilderPending | BuilderDone <T> | BuilderError ;