pub trait WithNamedwhere
    Self: Sized,
{ fn named<S>(self, name: S) -> Self
    where
        S: Into<Cow<'static, str>>
; }
Expand description

An easy way to name an Entity and give it a Named Component.

Required Methods

Adds a name to the entity being built.

Implementations on Foreign Types

Implementors