pub fn remove_entity_frame(
tx: &mut ReadWriteTransaction<'_>,
uid: &str,
) -> Result<()>Expand description
Removes an entity frame from the repository transaction, effectively undoing the
operation performed by create_entity_frame.
§Arguments
tx- A mutable read/write transaction to remove the frame.uid- The uid of the entity frame to be removed.
§Returns
A Result indicating success or failure of the removal operation.