Struct libp2p::gossipsub::protocol::GossipsubCodec [−][src]
pub struct GossipsubCodec { /* fields omitted */ }
Implementations
impl GossipsubCodec
[src]
impl GossipsubCodec
[src]pub fn new(
length_codec: UviBytes<Bytes>,
validation_mode: ValidationMode
) -> GossipsubCodec
[src]
length_codec: UviBytes<Bytes>,
validation_mode: ValidationMode
) -> GossipsubCodec
Trait Implementations
impl Decoder for GossipsubCodec
[src]
impl Decoder for GossipsubCodec
[src]type Item = HandlerEvent
The type of items returned by decode
type Error = GossipsubHandlerError
The type of decoding errors.
pub fn decode(
&mut self,
src: &mut BytesMut
) -> Result<Option<<GossipsubCodec as Decoder>::Item>, <GossipsubCodec as Decoder>::Error>
[src]
&mut self,
src: &mut BytesMut
) -> Result<Option<<GossipsubCodec as Decoder>::Item>, <GossipsubCodec as Decoder>::Error>
pub fn decode_eof(
&mut self,
src: &mut BytesMut
) -> Result<Option<Self::Item>, Self::Error>
[src]
&mut self,
src: &mut BytesMut
) -> Result<Option<Self::Item>, Self::Error>
impl Encoder for GossipsubCodec
[src]
impl Encoder for GossipsubCodec
[src]type Item = Rpc
The type of items consumed by encode
type Error = GossipsubHandlerError
The type of encoding errors.
pub fn encode(
&mut self,
item: <GossipsubCodec as Encoder>::Item,
dst: &mut BytesMut
) -> Result<(), <GossipsubCodec as Encoder>::Error>
[src]
&mut self,
item: <GossipsubCodec as Encoder>::Item,
dst: &mut BytesMut
) -> Result<(), <GossipsubCodec as Encoder>::Error>