pub struct MessageDeltaObject {
pub id: String,
pub object: String,
pub delta: MessageDeltaObject_Delta,
}
Expand description
Represents a message delta i.e.
Fields§
§id: String
The identifier of the message, which can be referenced in API endpoints.
object: String
The object type, which is always thread.message.delta
.
delta: MessageDeltaObject_Delta
Trait Implementations§
Source§impl Clone for MessageDeltaObject
impl Clone for MessageDeltaObject
Source§fn clone(&self) -> MessageDeltaObject
fn clone(&self) -> MessageDeltaObject
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 MessageDeltaObject
impl RefUnwindSafe for MessageDeltaObject
impl Send for MessageDeltaObject
impl Sync for MessageDeltaObject
impl Unpin for MessageDeltaObject
impl UnwindSafe for MessageDeltaObject
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