pub struct QdrantConfig {
pub url: String,
pub grpc: Option<String>,
pub max_connections: usize,
}Expand description
[qdrant] — Qdrant connection settings.
Fields§
§url: String§grpc: Option<String>gRPC endpoint (defaults to port 6334).
max_connections: usizeTrait Implementations§
Source§impl Clone for QdrantConfig
impl Clone for QdrantConfig
Source§fn clone(&self) -> QdrantConfig
fn clone(&self) -> QdrantConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for QdrantConfig
impl Debug for QdrantConfig
Source§impl<'de> Deserialize<'de> for QdrantConfig
impl<'de> Deserialize<'de> for QdrantConfig
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for QdrantConfig
impl RefUnwindSafe for QdrantConfig
impl Send for QdrantConfig
impl Sync for QdrantConfig
impl Unpin for QdrantConfig
impl UnwindSafe for QdrantConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more