pub struct ChatCompletionDeleted {
pub object: String,
pub id: String,
pub deleted: bool,
}
Fields§
§object: String
The type of object being deleted.
id: String
The ID of the chat completion that was deleted.
deleted: bool
Whether the chat completion was deleted.
Trait Implementations§
Source§impl Clone for ChatCompletionDeleted
impl Clone for ChatCompletionDeleted
Source§fn clone(&self) -> ChatCompletionDeleted
fn clone(&self) -> ChatCompletionDeleted
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 ChatCompletionDeleted
impl Debug for ChatCompletionDeleted
Source§impl Default for ChatCompletionDeleted
impl Default for ChatCompletionDeleted
Source§fn default() -> ChatCompletionDeleted
fn default() -> ChatCompletionDeleted
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ChatCompletionDeleted
impl RefUnwindSafe for ChatCompletionDeleted
impl Send for ChatCompletionDeleted
impl Sync for ChatCompletionDeleted
impl Unpin for ChatCompletionDeleted
impl UnwindSafe for ChatCompletionDeleted
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