pub struct CapturedIntentAck {
pub intent_id: String,
pub channel: String,
pub status: String,
pub acceptance: String,
pub egress_ref: Option<String>,
}Expand description
A captured durable-accept acknowledgment for a dispatched intent.
Fields§
§intent_id: String§channel: String§status: String§acceptance: String§egress_ref: Option<String>Trait Implementations§
Source§impl Clone for CapturedIntentAck
impl Clone for CapturedIntentAck
Source§fn clone(&self) -> CapturedIntentAck
fn clone(&self) -> CapturedIntentAck
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 CapturedIntentAck
impl Debug for CapturedIntentAck
Source§impl<'de> Deserialize<'de> for CapturedIntentAck
impl<'de> Deserialize<'de> for CapturedIntentAck
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 CapturedIntentAck
impl PartialEq for CapturedIntentAck
Source§fn eq(&self, other: &CapturedIntentAck) -> bool
fn eq(&self, other: &CapturedIntentAck) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for CapturedIntentAck
impl Serialize for CapturedIntentAck
impl StructuralPartialEq for CapturedIntentAck
Auto Trait Implementations§
impl Freeze for CapturedIntentAck
impl RefUnwindSafe for CapturedIntentAck
impl Send for CapturedIntentAck
impl Sync for CapturedIntentAck
impl Unpin for CapturedIntentAck
impl UnsafeUnpin for CapturedIntentAck
impl UnwindSafe for CapturedIntentAck
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