use ;
use crateconstruct_query_class_item_with_options;
/// A query parameter that enforces exactly one entity matches the query.
///
/// Panics if zero or multiple entities match the query filter.
///
/// Example:
/// ```python
/// def system(player: Single[tuple[Mut[Transform], Player]]) -> None:
/// transform, player_data = player # Guaranteed to be single entity
/// transform.translation.x += 10.0
/// ```
;