enso-client 0.1.0

Rust client library for connecting to and querying an Enso database over TCP.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use std::string::FromUtf8Error;

#[derive(Debug)]
pub enum EnsoError {
    Io(std::io::Error),
    Protocol(String),
}

impl From<std::io::Error> for EnsoError {
    fn from(e: std::io::Error) -> Self {
        EnsoError::Io(e)
    }
}