Type Definition jack::InternalClientID[][src]

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::NO_START_SERVER);
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),
};