pub struct TranscriptInstructions {
pub id: Option<String>,
pub instructions: Instructions,
pub tool_definitions: Vec<ToolDefinition>,
}Expand description
An instructions transcript entry.
Fields§
§id: Option<String>§instructions: Instructions§tool_definitions: Vec<ToolDefinition>Trait Implementations§
Source§impl Clone for TranscriptInstructions
impl Clone for TranscriptInstructions
Source§fn clone(&self) -> TranscriptInstructions
fn clone(&self) -> TranscriptInstructions
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 Debug for TranscriptInstructions
impl Debug for TranscriptInstructions
Source§impl PartialEq for TranscriptInstructions
impl PartialEq for TranscriptInstructions
Source§fn eq(&self, other: &TranscriptInstructions) -> bool
fn eq(&self, other: &TranscriptInstructions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for TranscriptInstructions
Auto Trait Implementations§
impl Freeze for TranscriptInstructions
impl RefUnwindSafe for TranscriptInstructions
impl Send for TranscriptInstructions
impl Sync for TranscriptInstructions
impl Unpin for TranscriptInstructions
impl UnsafeUnpin for TranscriptInstructions
impl UnwindSafe for TranscriptInstructions
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