pub type BackendResult<T> = Result<T, BackendError>;
Expand description
The type alias used for backends
Aliased Type§
pub enum BackendResult<T> {
Ok(T),
Err(BackendError),
}
pub type BackendResult<T> = Result<T, BackendError>;
The type alias used for backends
pub enum BackendResult<T> {
Ok(T),
Err(BackendError),
}