weaviate-community 0.2.2

Community client for handling Weaviate vector database transactions written in Rust, for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/// All meta associated type components
use serde::{Deserialize, Serialize};

/// The Metadata struct used to contain all of the results returned from the get_meta endpoint.
///
/// There should never be a need for this to be created manually.
#[derive(Serialize, Deserialize, Debug)]
pub struct Metadata {
    pub hostname: String,
    pub modules: serde_json::Value,
    pub version: String,
}