pub enum CompiledProviderType {
OpenAI,
Anthropic,
Local,
Custom,
OpenRouter,
}Expand description
Compiled provider types.
Variants§
Trait Implementations§
Source§impl Clone for CompiledProviderType
impl Clone for CompiledProviderType
Source§fn clone(&self) -> CompiledProviderType
fn clone(&self) -> CompiledProviderType
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 CompiledProviderType
impl Debug for CompiledProviderType
Source§impl<'de> Deserialize<'de> for CompiledProviderType
impl<'de> Deserialize<'de> for CompiledProviderType
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
Source§impl PartialEq for CompiledProviderType
impl PartialEq for CompiledProviderType
Source§impl Serialize for CompiledProviderType
impl Serialize for CompiledProviderType
impl Copy for CompiledProviderType
impl Eq for CompiledProviderType
impl StructuralPartialEq for CompiledProviderType
Auto Trait Implementations§
impl Freeze for CompiledProviderType
impl RefUnwindSafe for CompiledProviderType
impl Send for CompiledProviderType
impl Sync for CompiledProviderType
impl Unpin for CompiledProviderType
impl UnwindSafe for CompiledProviderType
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,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.