pub struct JSONConfig {
pub api_key_cohere: Option<String>,
pub api_key_openai: Option<String>,
pub api_key_eleven_labs: Option<String>,
}
Fields§
§api_key_cohere: Option<String>
§api_key_openai: Option<String>
§api_key_eleven_labs: Option<String>
Trait Implementations§
Source§impl Clone for JSONConfig
impl Clone for JSONConfig
Source§fn clone(&self) -> JSONConfig
fn clone(&self) -> JSONConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for JSONConfig
impl Debug for JSONConfig
Source§impl<'de> Deserialize<'de> for JSONConfig
impl<'de> Deserialize<'de> for JSONConfig
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 JSONConfig
impl RefUnwindSafe for JSONConfig
impl Send for JSONConfig
impl Sync for JSONConfig
impl Unpin for JSONConfig
impl UnwindSafe for JSONConfig
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