pub struct UpdateChatCompletionParams {
pub completion_id: String,
}
Fields§
§completion_id: String
The ID of the chat completion to update.
Implementations§
Trait Implementations§
Source§impl Clone for UpdateChatCompletionParams
impl Clone for UpdateChatCompletionParams
Source§fn clone(&self) -> UpdateChatCompletionParams
fn clone(&self) -> UpdateChatCompletionParams
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 UpdateChatCompletionParams
impl Debug for UpdateChatCompletionParams
Source§impl<'de> Deserialize<'de> for UpdateChatCompletionParams
impl<'de> Deserialize<'de> for UpdateChatCompletionParams
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
Source§impl PartialEq for UpdateChatCompletionParams
impl PartialEq for UpdateChatCompletionParams
Source§fn eq(&self, other: &UpdateChatCompletionParams) -> bool
fn eq(&self, other: &UpdateChatCompletionParams) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UpdateChatCompletionParams
Auto Trait Implementations§
impl Freeze for UpdateChatCompletionParams
impl RefUnwindSafe for UpdateChatCompletionParams
impl Send for UpdateChatCompletionParams
impl Sync for UpdateChatCompletionParams
impl Unpin for UpdateChatCompletionParams
impl UnwindSafe for UpdateChatCompletionParams
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