[][src]Function milter::version

pub fn version() -> (u32, u32, u32)

Returns the runtime version triple of the milter library.

Examples

let (major, minor, patch) = milter::version();

println!("milter v{}.{}.{}", major, minor, patch);