gauc 0.8.1

Couchbase Rust Adapter / CLI
Documentation
1
2
3
4
5
6
7
use super::super::super::client::Client;

/// Handle "info" command
pub fn cmd_info(client: &mut Client) -> bool {
    println!("{:?}", client);
    true
}