pub enum AdapterType {
ConfigDriven,
Independent,
}
Expand description
Types of adapters used by providers
Variants§
ConfigDriven
Uses GenericAdapter with ProviderConfig
Independent
Uses independent adapter (OpenAI, Gemini, Mistral, Cohere)
Trait Implementations§
Source§impl Clone for AdapterType
impl Clone for AdapterType
Source§fn clone(&self) -> AdapterType
fn clone(&self) -> AdapterType
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 AdapterType
impl Debug for AdapterType
Source§impl PartialEq for AdapterType
impl PartialEq for AdapterType
impl Copy for AdapterType
impl Eq for AdapterType
impl StructuralPartialEq for AdapterType
Auto Trait Implementations§
impl Freeze for AdapterType
impl RefUnwindSafe for AdapterType
impl Send for AdapterType
impl Sync for AdapterType
impl Unpin for AdapterType
impl UnwindSafe for AdapterType
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.