pub struct ProtosocketMessagePackDecoder<T> { /* private fields */ }Expand description
A deserializer that takes a serde deserializable T and implements
protosocket::Decoder. You can use this with a protosocket
Connection or rpc.
Trait Implementations§
Source§impl<T: Debug> Debug for ProtosocketMessagePackDecoder<T>
impl<T: Debug> Debug for ProtosocketMessagePackDecoder<T>
Source§impl<T> Decoder for ProtosocketMessagePackDecoder<T>where
T: DeserializeOwned + Debug,
impl<T> Decoder for ProtosocketMessagePackDecoder<T>where
T: DeserializeOwned + Debug,
Auto Trait Implementations§
impl<T> Freeze for ProtosocketMessagePackDecoder<T>
impl<T> RefUnwindSafe for ProtosocketMessagePackDecoder<T>where
T: RefUnwindSafe,
impl<T> Send for ProtosocketMessagePackDecoder<T>where
T: Send,
impl<T> Sync for ProtosocketMessagePackDecoder<T>where
T: Sync,
impl<T> Unpin for ProtosocketMessagePackDecoder<T>where
T: Unpin,
impl<T> UnwindSafe for ProtosocketMessagePackDecoder<T>where
T: UnwindSafe,
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