pub struct ItemCompletedNotification {
pub completed_at_ms: i64,
pub item: ThreadItem,
pub thread_id: String,
pub turn_id: String,
}Fields§
§completed_at_ms: i64§item: ThreadItem§thread_id: String§turn_id: StringTrait Implementations§
Source§impl Clone for ItemCompletedNotification
impl Clone for ItemCompletedNotification
Source§fn clone(&self) -> ItemCompletedNotification
fn clone(&self) -> ItemCompletedNotification
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ItemCompletedNotification
impl Debug for ItemCompletedNotification
Source§impl<'de> Deserialize<'de> for ItemCompletedNotification
impl<'de> Deserialize<'de> for ItemCompletedNotification
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
Source§impl PartialEq for ItemCompletedNotification
impl PartialEq for ItemCompletedNotification
Source§fn eq(&self, other: &ItemCompletedNotification) -> bool
fn eq(&self, other: &ItemCompletedNotification) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ItemCompletedNotification
Auto Trait Implementations§
impl Freeze for ItemCompletedNotification
impl RefUnwindSafe for ItemCompletedNotification
impl Send for ItemCompletedNotification
impl Sync for ItemCompletedNotification
impl Unpin for ItemCompletedNotification
impl UnsafeUnpin for ItemCompletedNotification
impl UnwindSafe for ItemCompletedNotification
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