Enum tea_sdk::vmh::message::structs_proto::libp2p::libp2p_request::Msg
pub enum Msg {
Show 14 variants
GeneralRequest(GeneralRequest),
PubMessage(PubMessage),
StartUseIpAddressRequest(StartUseIpAddressRequest),
StopUseIpAddressRequest(StopUseIpAddressRequest),
CloseRequest(CloseRequest),
PeersChangedRequest(PeersChangedRequest),
SubscribeGossipTopicRequest(SubscribeGossipTopicRequest),
UnsubscribeGossipTopicRequest(UnsubscribeGossipTopicRequest),
ReplyRequest(GeneralRequest),
Libp2pInitedRequest(Libp2pInitedRequest),
ListConnectedPeers(ListConnectedPeers),
AskForHandshakeRequest(AskForHandshakeRequest),
HandshakeRequest(HandshakeRequest),
HandshakeReply(HandshakeReply),
}
Variants§
GeneralRequest(GeneralRequest)
PubMessage(PubMessage)
StartUseIpAddressRequest(StartUseIpAddressRequest)
StopUseIpAddressRequest(StopUseIpAddressRequest)
CloseRequest(CloseRequest)
PeersChangedRequest(PeersChangedRequest)
SubscribeGossipTopicRequest(SubscribeGossipTopicRequest)
UnsubscribeGossipTopicRequest(UnsubscribeGossipTopicRequest)
ReplyRequest(GeneralRequest)
Libp2pInitedRequest(Libp2pInitedRequest)
ListConnectedPeers(ListConnectedPeers)
AskForHandshakeRequest(AskForHandshakeRequest)
HandshakeRequest(HandshakeRequest)
HandshakeReply(HandshakeReply)
Implementations§
§impl Msg
impl Msg
pub fn merge<B>(
field: &mut Option<Msg>,
tag: u32,
wire_type: WireType,
buf: &mut B,
ctx: DecodeContext
) -> Result<(), DecodeError>where
B: Buf,
pub fn merge<B>( field: &mut Option<Msg>, tag: u32, wire_type: WireType, buf: &mut B, ctx: DecodeContext ) -> Result<(), DecodeError>where B: Buf,
Decodes an instance of the message from a buffer, and merges it into self.
pub fn encoded_len(&self) -> usize
pub fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Msg
impl Send for Msg
impl Sync for Msg
impl Unpin for Msg
impl UnwindSafe for Msg
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