proton_client 0.1.2

Client for Timeplus Proton, a streaming SQL engine
Documentation
1
2
3
4
5
6
7
8
9
10
use proton_client::ProtonClient;

#[test]
fn test_display() {
    let client = ProtonClient::new("https://api.proton.com");

    let expected = "https://api.proton.com";

    assert_eq!(format!("{}", client), expected);
}