pub trait ToMacrosError {
    // Required methods
    fn to_macros_error(self) -> MacrosError;
    fn to_err<T>(self) -> Result<T, MacrosError>;
}

Required Methods§

Implementors§

source§

impl<S> ToMacrosError for Swhere S: Error + Send + Sync + 'static,