weaviate-community 0.1.0

community weaviate client library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use reqwest::Url;
use std::error::Error;

pub struct _Classification {
    _endpoint: Url,
}

impl _Classification {
    pub fn new(url: &Url) -> Result<Self, Box<dyn Error>> {
        let _endpoint = url.join("/v1/classification")?;
        Ok(_Classification { _endpoint })
    }
}