pub struct ResponseConfigurationUpdateItemParam {
pub id: Option<String>,
pub reasoning: Option<ResponseConfigurationUpdateReasoning>,
}Available on crate feature
response-types only.Expand description
An update to the conversation’s response configuration. The configuration remains in effect for subsequent responses until it is replaced by another configuration update.
Fields§
§id: Option<String>§reasoning: Option<ResponseConfigurationUpdateReasoning>Updates to reasoning configuration. Only effort is supported.
Trait Implementations§
Source§impl Clone for ResponseConfigurationUpdateItemParam
impl Clone for ResponseConfigurationUpdateItemParam
Source§fn clone(&self) -> ResponseConfigurationUpdateItemParam
fn clone(&self) -> ResponseConfigurationUpdateItemParam
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'de> Deserialize<'de> for ResponseConfigurationUpdateItemParam
impl<'de> Deserialize<'de> for ResponseConfigurationUpdateItemParam
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 ResponseConfigurationUpdateItemParam
Auto Trait Implementations§
impl Freeze for ResponseConfigurationUpdateItemParam
impl RefUnwindSafe for ResponseConfigurationUpdateItemParam
impl Send for ResponseConfigurationUpdateItemParam
impl Sync for ResponseConfigurationUpdateItemParam
impl Unpin for ResponseConfigurationUpdateItemParam
impl UnsafeUnpin for ResponseConfigurationUpdateItemParam
impl UnwindSafe for ResponseConfigurationUpdateItemParam
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