pub struct MessageContentTextAnnotationsFilePathObject {
pub type: String,
pub text: String,
pub file_path: MessageContentTextAnnotationsFilePathObject_FilePath,
pub start_index: i64,
pub end_index: i64,
}
Expand description
A URL for the file that’s generated when the assistant used the
code_interpreter
tool to generate a file.
Fields§
§type: String
Always file_path
.
text: String
The text in the message content that needs to be replaced.
file_path: MessageContentTextAnnotationsFilePathObject_FilePath
§start_index: i64
§end_index: i64
Trait Implementations§
Source§impl Clone for MessageContentTextAnnotationsFilePathObject
impl Clone for MessageContentTextAnnotationsFilePathObject
Source§fn clone(&self) -> MessageContentTextAnnotationsFilePathObject
fn clone(&self) -> MessageContentTextAnnotationsFilePathObject
Returns a copy 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 moreAuto Trait Implementations§
impl Freeze for MessageContentTextAnnotationsFilePathObject
impl RefUnwindSafe for MessageContentTextAnnotationsFilePathObject
impl Send for MessageContentTextAnnotationsFilePathObject
impl Sync for MessageContentTextAnnotationsFilePathObject
impl Unpin for MessageContentTextAnnotationsFilePathObject
impl UnwindSafe for MessageContentTextAnnotationsFilePathObject
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