Enum specs::InsertResult [] [src]

pub enum InsertResult<T> {
    Inserted,
    Updated(T),
    EntityIsDead(T),
}

the status of an insert operation

Variants

The value was inserted and there was no value before

The value was updated an already inserted value the value returned is the old value

The value failed to insert because the entity was invalid