pub enum AwpMessageType {
VisitorIntentSignal,
ContentGapSignal,
PaymentIntent,
SupportEscalation,
ReviewSignal,
OperationsProposal,
InvokeCapability,
RenderUi,
OutboundTrigger,
}Expand description
AWP-specific typed message categories for agent routing.
These extend the generic A2aMessageType with domain-specific semantics
that enable typed dispatch in AWP gateways and agent meshes.
Variants§
VisitorIntentSignal
Visitor expressed purchase or service intent.
ContentGapSignal
Content gap detected — missing or outdated information.
PaymentIntent
Payment intent lifecycle message.
SupportEscalation
Escalation to human support.
ReviewSignal
Review or feedback signal from a platform.
OperationsProposal
Operational proposal (inventory, scheduling, etc.).
InvokeCapability
Invoke a declared capability on a remote agent.
RenderUi
Request UI rendering (dual-surface: HTML for humans, JSON-LD for agents).
OutboundTrigger
Proactive outbound message (follow-up, notification).
Trait Implementations§
Source§impl Clone for AwpMessageType
impl Clone for AwpMessageType
Source§fn clone(&self) -> AwpMessageType
fn clone(&self) -> AwpMessageType
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 AwpMessageType
impl Debug for AwpMessageType
Source§impl<'de> Deserialize<'de> for AwpMessageType
impl<'de> Deserialize<'de> for AwpMessageType
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 Display for AwpMessageType
impl Display for AwpMessageType
Source§impl Hash for AwpMessageType
impl Hash for AwpMessageType
Source§impl PartialEq for AwpMessageType
impl PartialEq for AwpMessageType
Source§fn eq(&self, other: &AwpMessageType) -> bool
fn eq(&self, other: &AwpMessageType) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AwpMessageType
impl Serialize for AwpMessageType
impl Copy for AwpMessageType
impl Eq for AwpMessageType
impl StructuralPartialEq for AwpMessageType
Auto Trait Implementations§
impl Freeze for AwpMessageType
impl RefUnwindSafe for AwpMessageType
impl Send for AwpMessageType
impl Sync for AwpMessageType
impl Unpin for AwpMessageType
impl UnsafeUnpin for AwpMessageType
impl UnwindSafe for AwpMessageType
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