pub trait IntoPortable {
    type Output;
    fn into_portable(self, registry: &mut Registry) -> Self::Output;
}
Expand description

Convert the type definition into the portable form using a registry.

Associated Types

The portable version of Self.

Required methods

Convert self to the portable form by using the registry for caching.

Implementations on Foreign Types

Implementors