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