Function get_library_version_numbers

Source
pub fn get_library_version_numbers() -> Result<(u8, u8, u8), Error>
Expand description

Tries to convert the runtime system library version to numeric major, minor and micro form, for comparison purposes.

Note, currently micro is always zero. This is the case even in beta/rc versions (like 13.99.1) due to the fact that the version string returned by PA always has micro fixed to zero.

Returns Err if parsing the version number string fails.