pub struct TransportReply {
pub data: Value,
}Expand description
Reply returned by request-response message pattern handlers.
Fields§
§data: ValueImplementations§
Trait Implementations§
Source§impl Clone for TransportReply
impl Clone for TransportReply
Source§fn clone(&self) -> TransportReply
fn clone(&self) -> TransportReply
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 TransportReply
impl Debug for TransportReply
Source§impl<'de> Deserialize<'de> for TransportReply
impl<'de> Deserialize<'de> for TransportReply
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 From<TransportReply> for TransportExceptionResponse
impl From<TransportReply> for TransportExceptionResponse
Source§fn from(reply: TransportReply) -> Self
fn from(reply: TransportReply) -> Self
Converts to this type from the input type.
Source§impl IntoTransportReply for TransportReply
impl IntoTransportReply for TransportReply
fn into_transport_reply(self) -> Option<TransportReply>
Source§impl PartialEq for TransportReply
impl PartialEq for TransportReply
Source§impl Serialize for TransportReply
impl Serialize for TransportReply
impl StructuralPartialEq for TransportReply
Auto Trait Implementations§
impl Freeze for TransportReply
impl RefUnwindSafe for TransportReply
impl Send for TransportReply
impl Sync for TransportReply
impl Unpin for TransportReply
impl UnsafeUnpin for TransportReply
impl UnwindSafe for TransportReply
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