//! Borrow-scoped broad-phase queries, casts, and character-mover helpers.
//!
//! Acquire [`Query`] from [`crate::World::query`] or [`crate::RecordingSession::query`]. Both
//! owners issue the same capability type; the sealed access proof carries the permitted activity.
//! On native targets, repeated overlap, cast, and mover queries can reuse `ShapeQueryBuffer`,
//! `RayQueryBuffer`, and `MoverQueryBuffer` so native and mapped storage remain warm together.
//!
//! Temporary proxies accept at most [`crate::MAX_SHAPE_PROXY_POINTS`] points; exceeding that limit
//! returns [`crate::Error::InvalidArgument`] before native query activity. Visitor methods bind the
//! complete native result batch first, then stop Rust-side iteration when the visitor returns
//! `false`.
pub use ;
pub use Query;
pub use ;