Trait abi_stable::erased_types::SerializeImplType[][src]

pub trait SerializeImplType<'s> {
    type Interface: SerializeProxyType<'s>;
    fn serialize_impl(
        &'s self
    ) -> Result<<Self::Interface as SerializeProxyType<'s>>::Proxy, RBoxError>; }
Expand description

Describes how a type is serialized by DynTrait.

Associated Types

An InterfaceType implementor which determines the intermediate type through which this is serialized.

Required methods

Implementors