Struct libreda_db::region_search::CellInstanceEntry
source · [−]pub struct CellInstanceEntry<L: LayoutBase> {
bounding_box: Rect<L::Coord>,
cell_inst_id: L::CellInstId,
}
Expand description
Wrapper for cell instances
Fields
bounding_box: Rect<L::Coord>
cell_inst_id: L::CellInstId
Trait Implementations
sourceimpl<L> BoundingBox<<L as LayoutBase>::Coord> for CellInstanceEntry<L> where
L: LayoutBase,
L::Coord: PrimInt,
impl<L> BoundingBox<<L as LayoutBase>::Coord> for CellInstanceEntry<L> where
L: LayoutBase,
L::Coord: PrimInt,
sourcefn bounding_box(&self) -> Rect<L::Coord>
fn bounding_box(&self) -> Rect<L::Coord>
Return the bounding box of this geometry.
sourceimpl<L: Clone + LayoutBase> Clone for CellInstanceEntry<L> where
L::Coord: Clone,
L::CellInstId: Clone,
impl<L: Clone + LayoutBase> Clone for CellInstanceEntry<L> where
L::Coord: Clone,
L::CellInstId: Clone,
sourcefn clone(&self) -> CellInstanceEntry<L>
fn clone(&self) -> CellInstanceEntry<L>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl<L: Debug + LayoutBase> Debug for CellInstanceEntry<L> where
L::Coord: Debug,
L::CellInstId: Debug,
impl<L: Debug + LayoutBase> Debug for CellInstanceEntry<L> where
L::Coord: Debug,
L::CellInstId: Debug,
sourceimpl<L: PartialEq + LayoutBase> PartialEq<CellInstanceEntry<L>> for CellInstanceEntry<L> where
L::Coord: PartialEq,
L::CellInstId: PartialEq,
impl<L: PartialEq + LayoutBase> PartialEq<CellInstanceEntry<L>> for CellInstanceEntry<L> where
L::Coord: PartialEq,
L::CellInstId: PartialEq,
sourcefn eq(&self, other: &CellInstanceEntry<L>) -> bool
fn eq(&self, other: &CellInstanceEntry<L>) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CellInstanceEntry<L>) -> bool
fn ne(&self, other: &CellInstanceEntry<L>) -> bool
This method tests for !=
.
sourceimpl<L> RTreeObject for CellInstanceEntry<L> where
L: LayoutBase,
L::Coord: PrimInt + Signed + Debug,
impl<L> RTreeObject for CellInstanceEntry<L> where
L: LayoutBase,
L::Coord: PrimInt + Signed + Debug,
impl<L: LayoutBase> StructuralPartialEq for CellInstanceEntry<L>
Auto Trait Implementations
impl<L> RefUnwindSafe for CellInstanceEntry<L> where
<L as HierarchyBase>::CellInstId: RefUnwindSafe,
<L as LayoutBase>::Coord: RefUnwindSafe,
impl<L> Send for CellInstanceEntry<L> where
<L as HierarchyBase>::CellInstId: Send,
impl<L> Sync for CellInstanceEntry<L> where
<L as HierarchyBase>::CellInstId: Sync,
impl<L> Unpin for CellInstanceEntry<L> where
<L as HierarchyBase>::CellInstId: Unpin,
<L as LayoutBase>::Coord: Unpin,
impl<L> UnwindSafe for CellInstanceEntry<L> where
<L as HierarchyBase>::CellInstId: UnwindSafe,
<L as LayoutBase>::Coord: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more