pub struct ItemId(/* private fields */);
Expand description
An ID unique to a single QuadTree. This is the object that is returned from queries, and can be used to access the elements stored in the quad tree.
DO NOT use an ItemId on a quadtree unless the ItemId came from that tree.
Trait Implementations§
Source§impl Ord for ItemId
impl Ord for ItemId
Source§impl PartialOrd for ItemId
impl PartialOrd for ItemId
impl Copy for ItemId
impl Eq for ItemId
impl StructuralPartialEq for ItemId
Auto Trait Implementations§
impl Freeze for ItemId
impl RefUnwindSafe for ItemId
impl Send for ItemId
impl Sync for ItemId
impl Unpin for ItemId
impl UnwindSafe for ItemId
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more