pub struct SemanticBackendConfig {
pub backend: SemanticBackend,
pub model: String,
pub base_url: Option<String>,
pub api_key_env: Option<String>,
pub timeout_ms: u64,
pub max_batch_size: usize,
}Fields§
§backend: SemanticBackend§model: String§base_url: Option<String>§api_key_env: Option<String>§timeout_ms: u64§max_batch_size: usizeTrait Implementations§
Source§impl Clone for SemanticBackendConfig
impl Clone for SemanticBackendConfig
Source§fn clone(&self) -> SemanticBackendConfig
fn clone(&self) -> SemanticBackendConfig
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 SemanticBackendConfig
impl Debug for SemanticBackendConfig
Source§impl Default for SemanticBackendConfig
impl Default for SemanticBackendConfig
Source§impl PartialEq for SemanticBackendConfig
impl PartialEq for SemanticBackendConfig
Source§fn eq(&self, other: &SemanticBackendConfig) -> bool
fn eq(&self, other: &SemanticBackendConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for SemanticBackendConfig
impl StructuralPartialEq for SemanticBackendConfig
Auto Trait Implementations§
impl Freeze for SemanticBackendConfig
impl RefUnwindSafe for SemanticBackendConfig
impl Send for SemanticBackendConfig
impl Sync for SemanticBackendConfig
impl Unpin for SemanticBackendConfig
impl UnsafeUnpin for SemanticBackendConfig
impl UnwindSafe for SemanticBackendConfig
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more