pub trait ClientInterfaceExt {
    fn send_entity_update(
        &self,
        entities: impl Iterator<Item = (Entity, Option<String>)>,
        destroyed: bool
    ) -> Result<(), InterfaceError>; }

Required Methods

Implementations on Foreign Types

Implementors