pub enum ProviderName {
OPEN_AI,
LEGACY_OPEN_AI,
HARMONY,
GOOGLE,
ANTHROPIC,
Other(String),
}Variants§
Trait Implementations§
Source§impl Clone for ProviderName
impl Clone for ProviderName
Source§fn clone(&self) -> ProviderName
fn clone(&self) -> ProviderName
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 ProviderName
impl Debug for ProviderName
Source§impl<'de> Deserialize<'de> for ProviderName
impl<'de> Deserialize<'de> for ProviderName
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ProviderName
impl RefUnwindSafe for ProviderName
impl Send for ProviderName
impl Sync for ProviderName
impl Unpin for ProviderName
impl UnsafeUnpin for ProviderName
impl UnwindSafe for ProviderName
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