Skip to main content

MutEncoderAndDecoder

Trait MutEncoderAndDecoder 

Source
pub trait MutEncoderAndDecoder<Encoding, Strategy, Value>: MutEncoder<Encoding, Strategy, Value> + MutDecoder<Encoding, Strategy, Value>{ }

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<Component, Encoding, Strategy, Value> MutEncoderAndDecoder<Encoding, Strategy, Value> for Component
where Component: MutEncoder<Encoding, Strategy, Value> + MutDecoder<Encoding, Strategy, Value>, Encoding: HasEncodeBufferType + HasDecodeBufferType + HasErrorType,