pub struct DeliverFrame {
pub v: i64,
pub id: String,
pub ts: String,
pub from_agent_did: String,
pub to_agent_did: String,
pub payload: Value,
pub content_type: Option<String>,
pub conversation_id: Option<String>,
pub reply_to: Option<String>,
}Fields§
§v: i64§id: String§ts: String§from_agent_did: String§to_agent_did: String§payload: Value§content_type: Option<String>§conversation_id: Option<String>§reply_to: Option<String>Trait Implementations§
Source§impl Clone for DeliverFrame
impl Clone for DeliverFrame
Source§fn clone(&self) -> DeliverFrame
fn clone(&self) -> DeliverFrame
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 DeliverFrame
impl Debug for DeliverFrame
Source§impl<'de> Deserialize<'de> for DeliverFrame
impl<'de> Deserialize<'de> for DeliverFrame
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 DeliverFrame
impl PartialEq for DeliverFrame
Source§impl Serialize for DeliverFrame
impl Serialize for DeliverFrame
impl Eq for DeliverFrame
impl StructuralPartialEq for DeliverFrame
Auto Trait Implementations§
impl Freeze for DeliverFrame
impl RefUnwindSafe for DeliverFrame
impl Send for DeliverFrame
impl Sync for DeliverFrame
impl Unpin for DeliverFrame
impl UnsafeUnpin for DeliverFrame
impl UnwindSafe for DeliverFrame
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