pub struct AgentQueueEvent {
pub event_type: Option<String>,
pub queue: Option<TaskAgentQueue>,
}Expand description
Fields§
§event_type: Option<String>§queue: Option<TaskAgentQueue>An agent queue.
Implementations§
Trait Implementations§
source§impl Clone for AgentQueueEvent
impl Clone for AgentQueueEvent
source§fn clone(&self) -> AgentQueueEvent
fn clone(&self) -> AgentQueueEvent
Returns a copy 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 AgentQueueEvent
impl Debug for AgentQueueEvent
source§impl Default for AgentQueueEvent
impl Default for AgentQueueEvent
source§fn default() -> AgentQueueEvent
fn default() -> AgentQueueEvent
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for AgentQueueEvent
impl<'de> Deserialize<'de> for AgentQueueEvent
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 PartialEq for AgentQueueEvent
impl PartialEq for AgentQueueEvent
source§fn eq(&self, other: &AgentQueueEvent) -> bool
fn eq(&self, other: &AgentQueueEvent) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for AgentQueueEvent
impl Serialize for AgentQueueEvent
impl StructuralPartialEq for AgentQueueEvent
Auto Trait Implementations§
impl Freeze for AgentQueueEvent
impl RefUnwindSafe for AgentQueueEvent
impl Send for AgentQueueEvent
impl Sync for AgentQueueEvent
impl Unpin for AgentQueueEvent
impl UnwindSafe for AgentQueueEvent
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