pub enum ThreadItemEventKind {
ItemStarted {
item: ThreadItem,
},
ItemDelta {
item_id: String,
delta: ThreadItemDelta,
},
ItemCompleted {
item: ThreadItem,
},
}Variants§
Trait Implementations§
Source§impl Clone for ThreadItemEventKind
impl Clone for ThreadItemEventKind
Source§fn clone(&self) -> ThreadItemEventKind
fn clone(&self) -> ThreadItemEventKind
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 ThreadItemEventKind
impl Debug for ThreadItemEventKind
Source§impl<'de> Deserialize<'de> for ThreadItemEventKind
impl<'de> Deserialize<'de> for ThreadItemEventKind
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<ThreadItemEventKind, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<ThreadItemEventKind, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ThreadItemEventKind
impl PartialEq for ThreadItemEventKind
Source§fn eq(&self, other: &ThreadItemEventKind) -> bool
fn eq(&self, other: &ThreadItemEventKind) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ThreadItemEventKind
impl Serialize for ThreadItemEventKind
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for ThreadItemEventKind
Auto Trait Implementations§
impl Freeze for ThreadItemEventKind
impl RefUnwindSafe for ThreadItemEventKind
impl Send for ThreadItemEventKind
impl Sync for ThreadItemEventKind
impl Unpin for ThreadItemEventKind
impl UnsafeUnpin for ThreadItemEventKind
impl UnwindSafe for ThreadItemEventKind
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