pub type InternalClientID = jack_intclient_t;Expand description
A client to interact with a JACK server.
ยงExample
let c_res = jack::Client::new("rusty_client", jack::ClientOptions::default());
match c_res {
Ok((client, status)) => println!(
"Managed to open client {}, with
status {:?}!",
client.name(),
status
),
Err(e) => println!("Failed to open client because of error: {:?}", e),
};