Trait IdentifyExt

Source
pub trait IdentifyExt
where Self: Sized,
{ // Required method fn identify(self, id: impl Into<Id>) -> Identified<Self>; }
Expand description

An extension trait for conveniently creating Identified values.

Required Methods§

Source

fn identify(self, id: impl Into<Id>) -> Identified<Self>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<T> IdentifyExt for T