pub struct AABBGridHandle(/* private fields */);Expand description
This handle is used to modify the associated object or to update its position. It is returned by the insert method of a AABBGrid.
Trait Implementations§
Source§impl Clone for AABBGridHandle
impl Clone for AABBGridHandle
Source§fn clone(&self) -> AABBGridHandle
fn clone(&self) -> AABBGridHandle
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AABBGridHandle
impl Debug for AABBGridHandle
Source§impl Default for AABBGridHandle
impl Default for AABBGridHandle
Source§fn default() -> AABBGridHandle
fn default() -> AABBGridHandle
Returns the “default value” for a type. Read more
Source§impl From<KeyData> for AABBGridHandle
impl From<KeyData> for AABBGridHandle
Source§impl Hash for AABBGridHandle
impl Hash for AABBGridHandle
Source§impl Key for AABBGridHandle
impl Key for AABBGridHandle
Source§fn null() -> Self
fn null() -> Self
Creates a new key that is always invalid and distinct from any non-null
key. A null key can only be created through this method (or default
initialization of keys made with
new_key_type!, which calls this
method). Read moreSource§impl Ord for AABBGridHandle
impl Ord for AABBGridHandle
Source§fn cmp(&self, other: &AABBGridHandle) -> Ordering
fn cmp(&self, other: &AABBGridHandle) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AABBGridHandle
impl PartialEq for AABBGridHandle
Source§impl PartialOrd for AABBGridHandle
impl PartialOrd for AABBGridHandle
impl Copy for AABBGridHandle
impl Eq for AABBGridHandle
impl StructuralPartialEq for AABBGridHandle
Auto Trait Implementations§
impl Freeze for AABBGridHandle
impl RefUnwindSafe for AABBGridHandle
impl Send for AABBGridHandle
impl Sync for AABBGridHandle
impl Unpin for AABBGridHandle
impl UnwindSafe for AABBGridHandle
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