pub trait IntoMapper<Marker> {
type Mapper: MapDispatch;
// Required method
fn into_mapper(self) -> Self::Mapper;
}Expand description
Conversion into the mapper consumed by structural_map.
Required Associated Types§
type Mapper: MapDispatch
Required Methods§
fn into_mapper(self) -> Self::Mapper
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".