weaviate-community 0.2.1

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
13
14
/// All OIDC associated type components
use serde::{Deserialize, Serialize};

/// The expected response format when received from /v1/.well-known/openid-configuration
/// successfully.
///
/// This shouldn't be something you create yourself, as it is returned by the appropriate
/// endpoint when deserialized.
#[derive(Serialize, Deserialize, Debug)]
pub struct OidcResponse {
    pub href: String,
    #[serde(rename = "clientId")]
    pub client_id: String,
}