pub enum ThreadItemEventKind {
ItemStarted {
item: Item,
},
ItemDelta {
item_id: String,
delta: ThreadItemDelta,
},
ItemCompleted {
item: Item,
},
}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<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 From<ThreadItemEventKind> for ThreadItemEventKind
impl From<ThreadItemEventKind> for ThreadItemEventKind
Source§fn from(value: ThreadItemEventKind) -> Self
fn from(value: ThreadItemEventKind) -> Self
Converts to this type from the input type.
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
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