[][src]Trait rkyv_dyn::TypeNameDyn

pub trait TypeNameDyn {
    fn build_type_name(&self, f: &mut dyn FnMut(&str));
}

An object-safe version of TypeName.

This makes it possible to build the type name through a trait object.

Required methods

fn build_type_name(&self, f: &mut dyn FnMut(&str))

Submits the pieces of the type name to the given function.

Loading content...

Implementors

impl<T: TypeName> TypeNameDyn for T[src]

Loading content...