pub trait AsInnerConverter {
type Inner;
// Required methods
fn to_inner(&self) -> &Self::Inner;
fn from_inner(data: Self::Inner) -> Self;
}Required Associated Types§
Required Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".