pub enum WireMessage {
Signal {
data: Vec<u8>,
},
Authenticate {
data: Vec<u8>,
},
Request {
id: u64,
data: Vec<u8>,
},
Response {
id: u64,
data: Option<Vec<u8>>,
},
}Expand description
The messages actually sent over the wire by this library. If you want to implement your own server or client you will need this type or be able to serialize / deserialize it.
Variants§
Signal
A message without a response.
Fields
§
data: Vec<u8>Actual bytes of the message serialized as message pack.
Authenticate
An authentication message, sent by the client if the server requires it.
Fields
§
data: Vec<u8>Actual bytes of the message serialized as message pack.
Request
A request that requires a response.
Fields
§
data: Vec<u8>Actual bytes of the message serialized as message pack.
Response
The response to a request.
Trait Implementations§
Source§impl Debug for WireMessage
impl Debug for WireMessage
Source§impl<'de> Deserialize<'de> for WireMessage
impl<'de> Deserialize<'de> for WireMessage
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 Serialize for WireMessage
impl Serialize for WireMessage
Source§impl TryFrom<&WireMessage> for SerializedBytes
impl TryFrom<&WireMessage> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
The type returned in the event of a conversion error.
Source§fn try_from(t: &WireMessage) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: &WireMessage) -> Result<SerializedBytes, SerializedBytesError>
Performs the conversion.
Source§impl TryFrom<SerializedBytes> for WireMessage
impl TryFrom<SerializedBytes> for WireMessage
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
The type returned in the event of a conversion error.
Source§fn try_from(sb: SerializedBytes) -> Result<WireMessage, SerializedBytesError>
fn try_from(sb: SerializedBytes) -> Result<WireMessage, SerializedBytesError>
Performs the conversion.
Source§impl TryFrom<WireMessage> for SerializedBytes
impl TryFrom<WireMessage> for SerializedBytes
Source§type Error = SerializedBytesError
type Error = SerializedBytesError
The type returned in the event of a conversion error.
Source§fn try_from(t: WireMessage) -> Result<SerializedBytes, SerializedBytesError>
fn try_from(t: WireMessage) -> Result<SerializedBytes, SerializedBytesError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for WireMessage
impl RefUnwindSafe for WireMessage
impl Send for WireMessage
impl Sync for WireMessage
impl Unpin for WireMessage
impl UnwindSafe for WireMessage
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
Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more