mysql_async 0.36.2

Tokio based asynchronous MySql client library.
Documentation
/// Compile-time tracing level.
pub trait TracingLevel: Send + Sync + 'static {
    #[cfg(feature = "tracing")]
    const LEVEL: tracing::Level;
}

/// INFO tracing level.
pub struct LevelInfo;

impl TracingLevel for LevelInfo {
    #[cfg(feature = "tracing")]
    const LEVEL: tracing::Level = tracing::Level::INFO;
}

/// TRACE tracing level.
pub struct LevelTrace;

impl TracingLevel for LevelTrace {
    #[cfg(feature = "tracing")]
    const LEVEL: tracing::Level = tracing::Level::TRACE;
}

#[cfg(feature = "tracing")]
macro_rules! create_span {
    ($s:expr, $($field:tt)*) => {
        if $s == tracing::Level::TRACE {
            tracing::trace_span!($($field)*)
        } else if $s == tracing::Level::DEBUG {
            tracing::debug_span!($($field)*)
        } else if $s == tracing::Level::INFO {
            tracing::info_span!($($field)*)
        } else if $s == tracing::Level::WARN {
            tracing::warn_span!($($field)*)
        } else if $s == tracing::Level::ERROR {
            tracing::error_span!($($field)*)
        } else {
            unreachable!();
        }
    }
}

#[cfg(feature = "tracing")]
macro_rules! instrument_result {
    ($fut:expr, $span:expr) => {{
        let fut = async {
            $fut.await.or_else(|e| {
                match &e {
                    $crate::error::Error::Server(server_error) => {
                        match server_error.code {
                            // Duplicated entry for key
                            1062 => {
                                tracing::warn!(error = %e)
                            }
                            // Foreign key violation
                            1451 => {
                                tracing::warn!(error = %e)
                            }
                            // User defined exception condition
                            1644 => {
                                tracing::warn!(error = %e);
                            }
                            _ => tracing::error!(error = %e),
                        }
                    },
                    e => {
                        tracing::error!(error = %e);
                    }
                }
                Err(e)
            })
        };
        <_ as tracing::Instrument>::instrument(fut, $span)
    }};
}