pub type SplitChainResult<U> = Result<U, SplitConnectionError>;Expand description
This is a type alias for the chain-building methods in SplitBuilder.
It will either return the output of the chain building function or an error.
Aliased Type§
pub enum SplitChainResult<U> {
Ok(U),
Err(SplitConnectionError),
}