pub struct MessageDeltaContentTextAnnotationsFileCitationObject {
pub end_index: Option<i32>,
pub file_citation: Option<MessageDeltaContentTextAnnotationsFileCitationObjectFileCitation>,
pub index: i32,
pub start_index: Option<i32>,
pub text: Option<String>,
pub _type: String,
}
Fields§
§end_index: Option<i32>
§file_citation: Option<MessageDeltaContentTextAnnotationsFileCitationObjectFileCitation>
§index: i32
The index of the annotation in the text content part.
start_index: Option<i32>
§text: Option<String>
The text in the message content that needs to be replaced.
_type: String
Always file_citation
.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for MessageDeltaContentTextAnnotationsFileCitationObject
impl<'de> Deserialize<'de> for MessageDeltaContentTextAnnotationsFileCitationObject
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
Auto Trait Implementations§
impl Freeze for MessageDeltaContentTextAnnotationsFileCitationObject
impl RefUnwindSafe for MessageDeltaContentTextAnnotationsFileCitationObject
impl Send for MessageDeltaContentTextAnnotationsFileCitationObject
impl Sync for MessageDeltaContentTextAnnotationsFileCitationObject
impl Unpin for MessageDeltaContentTextAnnotationsFileCitationObject
impl UnwindSafe for MessageDeltaContentTextAnnotationsFileCitationObject
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