okapi-operation-macro 0.3.1

Macro implementation for okapi-operation
Documentation
use std::fmt::Display;

use proc_macro2::{Span, TokenStream};
use quote::ToTokens;

#[derive(Debug, thiserror::Error)]
pub(crate) enum Error {
    #[error(transparent)]
    Syn(#[from] syn::Error),
    #[error(transparent)]
    Darling(#[from] darling::Error),
    #[error("{0}")]
    Custom(String),
}

impl Error {
    pub(crate) fn syn_spanned<T: ToTokens, U: Display>(tokens: T, message: U) -> Self {
        Self::Syn(syn::Error::new_spanned(tokens, message))
    }

    pub(crate) fn write(self) -> TokenStream {
        match self {
            Error::Syn(x) => x.into_compile_error(),
            Error::Darling(x) => x.write_errors(),
            Error::Custom(x) => syn::Error::new(Span::call_site(), x).into_compile_error(),
        }
    }

    pub(crate) fn custom(message: impl Into<String>) -> Self {
        Self::Custom(message.into())
    }
}