Trait diny_core::AsyncSerialization[][src]

pub trait AsyncSerialization: AsyncSerialize + AsyncDeserialize { }
Expand description

Marker trait to denote that both AsyncSerialize and AsyncDeserialize are implemented for the type.

This is defined by default for any type that implements both AsyncSerialize and AsyncDeserialize.

Implementors