astrolab-smart-coffee-types 0.9.99990

Types lib
Documentation
use actix_web::{HttpResponse, ResponseError};
use derive_more::Display;
use serde::{Deserialize, Serialize};

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct GetListThemeFontsResult {
    pub list: Vec<ThemeFontAggregation>,
}

#[derive(Serialize, Deserialize, Debug, Clone)]
pub struct ThemeFontAggregation {
    pub id: Option<String>,
    pub value: Option<String>,
}

#[derive(Debug, Display)]
pub enum GetListThemeFontsError {
    Default(String),
}

impl ResponseError for GetListThemeFontsError {
    fn error_response(&self) -> HttpResponse {
        match self {
            GetListThemeFontsError::Default(error) => HttpResponse::BadRequest().body(error),
        }
    }
}