pub struct RTreeEntry {
pub bounds: Rect2,
pub id: usize,
}Expand description
An entry stored in the R-tree.
Fields§
§bounds: Rect2§id: usizeTrait Implementations§
Source§impl Clone for RTreeEntry
impl Clone for RTreeEntry
Source§fn clone(&self) -> RTreeEntry
fn clone(&self) -> RTreeEntry
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 RTreeEntry
impl Debug for RTreeEntry
Source§impl Default for RTreeEntry
impl Default for RTreeEntry
Source§fn default() -> RTreeEntry
fn default() -> RTreeEntry
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RTreeEntry
impl RefUnwindSafe for RTreeEntry
impl Send for RTreeEntry
impl Sync for RTreeEntry
impl Unpin for RTreeEntry
impl UnsafeUnpin for RTreeEntry
impl UnwindSafe for RTreeEntry
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