pub type BeaconEngineResult<Ok> = Result<Ok, BeaconConsensusEngineError>;
Expand description
Beacon engine result.
Aliased Type§
enum BeaconEngineResult<Ok> {
Ok(Ok),
Err(BeaconConsensusEngineError),
}
Variants§
Ok(Ok)
Contains the success value
Err(BeaconConsensusEngineError)
Contains the error value
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.