pub struct IndexedElement {
pub global_id: GlobalId,
pub bounds: BoundingBox,
}Expand description
An element as the index sees it: an identity and a box, nothing more.
Fields§
§global_id: GlobalId§bounds: BoundingBoxTrait Implementations§
Source§impl Clone for IndexedElement
impl Clone for IndexedElement
Source§fn clone(&self) -> IndexedElement
fn clone(&self) -> IndexedElement
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 IndexedElement
impl Debug for IndexedElement
Source§impl PartialEq for IndexedElement
impl PartialEq for IndexedElement
Source§fn eq(&self, other: &IndexedElement) -> bool
fn eq(&self, other: &IndexedElement) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl RTreeObject for IndexedElement
impl RTreeObject for IndexedElement
impl StructuralPartialEq for IndexedElement
Auto Trait Implementations§
impl Freeze for IndexedElement
impl RefUnwindSafe for IndexedElement
impl Send for IndexedElement
impl Sync for IndexedElement
impl Unpin for IndexedElement
impl UnsafeUnpin for IndexedElement
impl UnwindSafe for IndexedElement
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