get_mapper_version

Function get_mapper_version 

Source
pub fn get_mapper_version() -> &'static str
Expand description

Get the version of the loaded libmapper library.

Examples found in repository?
examples/device.rs (line 6)
5fn main() {
6    println!("Using libmapper version {} ", libmapper_rs::get_mapper_version());
7    let dev = Device::create("rustmapper");
8    loop {
9        dev.poll_and_block(Duration::from_millis(10));
10        if dev.is_ready() {
11            break;
12        }
13    }
14
15    println!("Device became ready!");
16}