pub enum ThreadItemPayloadView {
AgentMessage(ThreadAgentMessageItemView),
CommandExecution(ThreadCommandExecutionItemView),
Unknown(Map<String, Value>),
}Variants§
AgentMessage(ThreadAgentMessageItemView)
CommandExecution(ThreadCommandExecutionItemView)
Unknown(Map<String, Value>)
Trait Implementations§
Source§impl Clone for ThreadItemPayloadView
impl Clone for ThreadItemPayloadView
Source§fn clone(&self) -> ThreadItemPayloadView
fn clone(&self) -> ThreadItemPayloadView
Returns a duplicate 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 moreSource§impl Debug for ThreadItemPayloadView
impl Debug for ThreadItemPayloadView
Source§impl PartialEq for ThreadItemPayloadView
impl PartialEq for ThreadItemPayloadView
impl StructuralPartialEq for ThreadItemPayloadView
Auto Trait Implementations§
impl Freeze for ThreadItemPayloadView
impl RefUnwindSafe for ThreadItemPayloadView
impl Send for ThreadItemPayloadView
impl Sync for ThreadItemPayloadView
impl Unpin for ThreadItemPayloadView
impl UnsafeUnpin for ThreadItemPayloadView
impl UnwindSafe for ThreadItemPayloadView
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