pub struct InboundPendingItem {Show 13 fields
pub request_id: String,
pub frame_id: String,
pub from_agent_did: String,
pub to_agent_did: String,
pub payload_json: String,
pub payload_bytes: i64,
pub received_at_ms: i64,
pub next_attempt_at_ms: i64,
pub attempt_count: i64,
pub last_error: Option<String>,
pub last_attempt_at_ms: Option<i64>,
pub conversation_id: Option<String>,
pub reply_to: Option<String>,
}Fields§
§request_id: String§frame_id: String§from_agent_did: String§to_agent_did: String§payload_json: String§payload_bytes: i64§received_at_ms: i64§next_attempt_at_ms: i64§attempt_count: i64§last_error: Option<String>§last_attempt_at_ms: Option<i64>§conversation_id: Option<String>§reply_to: Option<String>Trait Implementations§
Source§impl Clone for InboundPendingItem
impl Clone for InboundPendingItem
Source§fn clone(&self) -> InboundPendingItem
fn clone(&self) -> InboundPendingItem
Returns a duplicate 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 InboundPendingItem
impl Debug for InboundPendingItem
Source§impl PartialEq for InboundPendingItem
impl PartialEq for InboundPendingItem
Source§impl Serialize for InboundPendingItem
impl Serialize for InboundPendingItem
impl Eq for InboundPendingItem
impl StructuralPartialEq for InboundPendingItem
Auto Trait Implementations§
impl Freeze for InboundPendingItem
impl RefUnwindSafe for InboundPendingItem
impl Send for InboundPendingItem
impl Sync for InboundPendingItem
impl Unpin for InboundPendingItem
impl UnsafeUnpin for InboundPendingItem
impl UnwindSafe for InboundPendingItem
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