pub struct MessageDeltaContentTextAnnotationsFilePathObject {
    pub index: i64,
    pub type: String,
    pub text: String,
    pub file_path: MessageDeltaContentTextAnnotationsFilePathObject_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§
§index: i64The index of the annotation in the text content part.
type: StringAlways file_path.
text: StringThe text in the message content that needs to be replaced.
file_path: MessageDeltaContentTextAnnotationsFilePathObject_FilePath§start_index: i64§end_index: i64Trait Implementations§
Source§impl Clone for MessageDeltaContentTextAnnotationsFilePathObject
 
impl Clone for MessageDeltaContentTextAnnotationsFilePathObject
Source§fn clone(&self) -> MessageDeltaContentTextAnnotationsFilePathObject
 
fn clone(&self) -> MessageDeltaContentTextAnnotationsFilePathObject
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 MessageDeltaContentTextAnnotationsFilePathObject
impl RefUnwindSafe for MessageDeltaContentTextAnnotationsFilePathObject
impl Send for MessageDeltaContentTextAnnotationsFilePathObject
impl Sync for MessageDeltaContentTextAnnotationsFilePathObject
impl Unpin for MessageDeltaContentTextAnnotationsFilePathObject
impl UnwindSafe for MessageDeltaContentTextAnnotationsFilePathObject
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