1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//! `HANDLER` Types used by a handler implementation, re-exported by generated code.

use core::fmt::Display;

/// The response type returned by implementors of a humblegen service trait function.
pub type HandlerResponse<T> = Result<T, ServiceError>;

/// A service-level error.
///
/// This type is returned by implementors of a humblegen service trait function
/// as part of a `HandlerResponse`.
///
/// The runtime converts it to a `super::service_protocol::ServiceError`.
#[derive(Debug)]
pub enum ServiceError {
    Authentication,
    Authorization,
    Internal(Box<dyn std::error::Error + Send + Sync>),
}

impl Display for ServiceError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            ServiceError::Authentication => write!(f, "authentication error"),
            ServiceError::Authorization => write!(f, "not authorized"),
            ServiceError::Internal(e) => write!(f, "internal server error: {:?}", e),
        }
    }
}