pub type ServerResponse<T> = Result<T, Error>;
Represents the response type for most endpoints.
pub enum ServerResponse<T> { Ok(T), Err(Error), }
Contains the success value
Contains the error value