[][src]Crate ts3_query

Ts3 query library Small, bare-metal ts query lib without any callback support currently.

Examples

use ts3_query::*;

let mut client = QueryClient::new("localhost:10011")?;

client.login("serveradmin", "password")?;
client.select_server_by_port(9987)?;

let clients = client.get_servergroup_client_list(7)?;
println!("Got clients in group 7: {:?}",clients);

client.logout()?;

Modules

raw

Module with helpers for raw-calls

Structs

ErrorResponse

Server error response

QueryClient

Ts3 Query client with active connection

Enums

Ts3Error