pub type ServerAppResult<T> = Result<T, ServerAppError>;
Expand description
The result type returned by server app methods.
Aliased Type§
pub enum ServerAppResult<T> {
Ok(T),
Err(ServerAppError),
}
pub type ServerAppResult<T> = Result<T, ServerAppError>;
The result type returned by server app methods.
pub enum ServerAppResult<T> {
Ok(T),
Err(ServerAppError),
}