pub enum ModifyAssistantRequestModel {
String(String),
AssistantSupportedModels(AssistantSupportedModels),
}
Expand description
ID of the model to use. You can use the List models API to see all of your available models, or see our Model overview for descriptions of them.
Variants§
String(String)
AssistantSupportedModels(AssistantSupportedModels)
Trait Implementations§
Source§impl Clone for ModifyAssistantRequestModel
impl Clone for ModifyAssistantRequestModel
Source§fn clone(&self) -> ModifyAssistantRequestModel
fn clone(&self) -> ModifyAssistantRequestModel
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 ModifyAssistantRequestModel
impl Debug for ModifyAssistantRequestModel
Source§impl<'de> Deserialize<'de> for ModifyAssistantRequestModel
impl<'de> Deserialize<'de> for ModifyAssistantRequestModel
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
impl StructuralPartialEq for ModifyAssistantRequestModel
Auto Trait Implementations§
impl Freeze for ModifyAssistantRequestModel
impl RefUnwindSafe for ModifyAssistantRequestModel
impl Send for ModifyAssistantRequestModel
impl Sync for ModifyAssistantRequestModel
impl Unpin for ModifyAssistantRequestModel
impl UnwindSafe for ModifyAssistantRequestModel
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