pub enum ElementRealtimeModel {
None,
Exchange,
TrackedItems,
Queue,
Status,
Archive,
Signals,
Boundary,
Unknown,
}Expand description
Local realtime model owned by an element crate.
Variants§
None
No local realtime state beyond parsed component text.
Exchange
Conversation/prompt state inside agent:exchange.
TrackedItems
Tracked work list state shared by backlog/review/icebox variants.
Queue
Active queue state: heads, pins, auto-DAG ordering, and projections.
Status
Runtime status projection.
Archive
Completed-work archive projection.
Signals
Realtime signal definitions and readings.
Boundary
Inline response boundary marker inside an exchange.
Unknown
Unknown or pluginless component content.
Trait Implementations§
Source§impl Clone for ElementRealtimeModel
impl Clone for ElementRealtimeModel
Source§fn clone(&self) -> ElementRealtimeModel
fn clone(&self) -> ElementRealtimeModel
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 moreimpl Copy for ElementRealtimeModel
Source§impl Debug for ElementRealtimeModel
impl Debug for ElementRealtimeModel
impl Eq for ElementRealtimeModel
Source§impl PartialEq for ElementRealtimeModel
impl PartialEq for ElementRealtimeModel
Source§fn eq(&self, other: &ElementRealtimeModel) -> bool
fn eq(&self, other: &ElementRealtimeModel) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ElementRealtimeModel
Auto Trait Implementations§
impl Freeze for ElementRealtimeModel
impl RefUnwindSafe for ElementRealtimeModel
impl Send for ElementRealtimeModel
impl Sync for ElementRealtimeModel
impl Unpin for ElementRealtimeModel
impl UnsafeUnpin for ElementRealtimeModel
impl UnwindSafe for ElementRealtimeModel
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