pub struct Message {
pub id: String,
pub time: u64,
pub name: String,
pub retvalue: String,
pub kv: BTreeMap<String, String>,
}Expand description
(~) Requests a message to be processed by the other party.
Fields§
§id: StringAn obscure unique message ID string generated by the sender.
time: u64Time (in seconds) the message was initially created.
name: StringName of the message.
retvalue: StringDefault textual return value of the message.
kv: BTreeMap<String, String>Enumeration of the key-value pairs of the message.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Message
impl RefUnwindSafe for Message
impl Send for Message
impl Sync for Message
impl Unpin for Message
impl UnwindSafe for Message
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