pub enum RawAgentEvent {
Token(TokenEvent),
React(ReactEvent),
EnvState(EnvStateEvent),
}Expand description
Wraps a raw underlying event from the core event buses.
Returned by Agent::subscribe_raw_events.
Variants§
Trait Implementations§
Source§impl Clone for RawAgentEvent
impl Clone for RawAgentEvent
Source§fn clone(&self) -> RawAgentEvent
fn clone(&self) -> RawAgentEvent
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 moreAuto Trait Implementations§
impl !RefUnwindSafe for RawAgentEvent
impl !UnwindSafe for RawAgentEvent
impl Freeze for RawAgentEvent
impl Send for RawAgentEvent
impl Sync for RawAgentEvent
impl Unpin for RawAgentEvent
impl UnsafeUnpin for RawAgentEvent
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