Trait SimpleEntity

Source
pub trait SimpleEntity: Entity<Group = IdentityGroup, Unit = 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<E> SimpleEntity for E
where E: Entity<Group = IdentityGroup, Unit = E>,