type ApplyEventResult<T> = Result<Result<T, ExpectedStakeTableError>, StakeTableError>;
Expand description
The result of applying a stake table event:
Ok(Ok(()))
: successOk(Err(...))
: expected errorErr(...)
: serious error
Aliased Type§
enum ApplyEventResult<T> {
Ok(Result<T, ExpectedStakeTableError>),
Err(StakeTableError),
}
Variants§
Ok(Result<T, ExpectedStakeTableError>)
Contains the success value
Err(StakeTableError)
Contains the error value