Function compiler

Source
pub fn compiler() -> String
Expand description

Retrieve libvlc compiler version.

Examples found in repository?
examples/print_version.rs (line 9)
7fn main() {
8    println!("Version : {}", vlc::version());
9    println!("Compiler : {}", vlc::compiler());
10}