Trait gclient::ext::sp_runtime::scale_info::IntoPortable
pub trait IntoPortable {
type Output;
// Required method
fn into_portable(self, registry: &mut Registry) -> Self::Output;
}
Expand description
Convert the type definition into the portable form using a registry.
Required Associated Types§
type Output
type Output
The portable version of Self
.
Required Methods§
fn into_portable(self, registry: &mut Registry) -> Self::Output
fn into_portable(self, registry: &mut Registry) -> Self::Output
Convert self
to the portable form by using the registry for caching.