pub struct BackendConfig {
pub backend_type: BackendType,
pub qdrant: QdrantConfig,
pub remote: Option<RemoteConfig>,
}Expand description
Backend configuration for search and query operations.
Fields§
§backend_type: BackendTypeBackend type to use
qdrant: QdrantConfigQdrant configuration (for local backend)
remote: Option<RemoteConfig>Remote server configuration (for HTTP backend)
Trait Implementations§
Source§impl Clone for BackendConfig
impl Clone for BackendConfig
Source§fn clone(&self) -> BackendConfig
fn clone(&self) -> BackendConfig
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 BackendConfig
impl Debug for BackendConfig
Source§impl Default for BackendConfig
impl Default for BackendConfig
Source§fn default() -> BackendConfig
fn default() -> BackendConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BackendConfigwhere
BackendConfig: Default,
impl<'de> Deserialize<'de> for BackendConfigwhere
BackendConfig: Default,
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 BackendConfig
impl RefUnwindSafe for BackendConfig
impl Send for BackendConfig
impl Sync for BackendConfig
impl Unpin for BackendConfig
impl UnwindSafe for BackendConfig
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