pub type VortexResult<T> = Result<T, VortexError>;Expand description
A type alias for Results that return VortexErrors as their error type.
Aliased Type§
pub enum VortexResult<T> {
Ok(T),
Err(VortexError),
}pub type VortexResult<T> = Result<T, VortexError>;A type alias for Results that return VortexErrors as their error type.
pub enum VortexResult<T> {
Ok(T),
Err(VortexError),
}