pub struct MessageDeltaContentTextObject {
pub index: i64,
pub type: String,
pub text: MessageDeltaContentTextObject_Text,
}Expand description
The text content that is part of a message.
Fields§
§index: i64The index of the content part in the message.
type: StringAlways text.
text: MessageDeltaContentTextObject_TextTrait Implementations§
Source§impl Clone for MessageDeltaContentTextObject
impl Clone for MessageDeltaContentTextObject
Source§fn clone(&self) -> MessageDeltaContentTextObject
fn clone(&self) -> MessageDeltaContentTextObject
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 MessageDeltaContentTextObject
impl RefUnwindSafe for MessageDeltaContentTextObject
impl Send for MessageDeltaContentTextObject
impl Sync for MessageDeltaContentTextObject
impl Unpin for MessageDeltaContentTextObject
impl UnwindSafe for MessageDeltaContentTextObject
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