udf 0.5.1

Easily create user defined functions (UDFs) for MariaDB and MySQL.
Documentation
1
2
3
4
5
6
7
8
9
//! Module that can be imported with `use udf::prelude::*;` to quickly get the
//! most often used imports.

pub use std::num::NonZeroU8;

pub use crate::{
    register, udf_log, AggregateUdf, ArgList, BasicUdf, Init, Process, ProcessError, SqlArg,
    SqlResult, SqlType, UdfCfg,
};