pub struct CellRef<'a, H>where
    H: HierarchyBase + ?Sized,{
    pub(super) base: &'a H,
    pub(super) id: <H as HierarchyIds>::CellId,
}
Expand description

A reference to a cell. This is just a wrapper around a netlist and a cell ID.

Fields§

§base: &'a H§id: <H as HierarchyIds>::CellId

Implementations§

source§

impl<'a, H> CellRef<'a, H>where H: HierarchyBase,

source

pub fn base(&self) -> &H

Access the base structure.

source

pub fn id(&self) -> <H as HierarchyIds>::CellId

Get the ID of this cell.

source

pub fn name(&self) -> <H as HierarchyBase>::NameType

Get the name of the cell.

source

pub fn each_cell_instance_id( &self ) -> impl Iterator<Item = <H as HierarchyIds>::CellInstId>

Iterate over the IDs of all child instances.

source

pub fn each_cell_instance(&self) -> impl Iterator<Item = CellInstRef<'a, H>>

Iterate over all child instances.

source

pub fn cell_instance_by_name(&self, name: &str) -> Option<CellInstRef<'a, H>>

Find a child instance by its name.

source

pub fn each_reference_id( &self ) -> impl Iterator<Item = <H as HierarchyIds>::CellInstId>

Iterate over the IDs of all instances of this cell.

source

pub fn each_reference(&self) -> impl Iterator<Item = CellInstRef<'a, H>>

Iterate over the of all instances of this cell.

source

pub fn num_references(&self) -> usize

Get the total number of usages of this cell.

source

pub fn each_cell_dependency(&self) -> impl Iterator<Item = CellRef<'a, H>>

Iterate over all dependencies of this cell.

source

pub fn num_cell_dependencies(&self) -> usize

Get the total number of direct dependencies of this cell.

source

pub fn each_dependent_cell(&self) -> impl Iterator<Item = CellRef<'a, H>>

Iterate over all cells that directly depend on this cell.

source

pub fn num_dependent_cells(&self) -> usize

Get the total number of cells which depend on this cell (i.e. use it).

source

pub fn num_child_instances(&self) -> usize

Get the number of cell instances inside the cell.

source§

impl<'a, L> CellRef<'a, L>where L: LayoutBase,

source

pub fn each_shape_per_layer( &self, layer_id: &<L as LayoutIds>::LayerId ) -> impl Iterator<Item = ShapeRef<'_, L>>

Iterate over all shapes on a layer.

source

pub fn each_shape(&self) -> impl Iterator<Item = ShapeRef<'_, L>>

Iterate over all shapes defined in this cell.

source

pub fn bounding_box_per_layer( &self, layer_id: &<L as LayoutIds>::LayerId ) -> Option<Rect<<L as LayoutIds>::Coord>>

Get the bounding box of the shapes on a specific layer.

source

pub fn bounding_box(&self) -> Option<Rect<<L as LayoutIds>::Coord>>

Get the bounding box of the shapes on all layers.

source§

impl<'a, N> CellRef<'a, N>where N: NetlistBase,

source

pub fn each_pin_id(&self) -> impl Iterator<Item = <N as NetlistIds>::PinId>

Iterate over the IDs of all pins of this cell.

source

pub fn each_pin(&self) -> impl Iterator<Item = PinRef<'a, N>>

Iterate over all pins of this cell.

source

pub fn each_input_pin(&self) -> impl Iterator<Item = PinRef<'a, N>>

Iterate over all input pins of this cell.

source

pub fn each_output_pin(&self) -> impl Iterator<Item = PinRef<'a, N>>

Iterate over all output pins of this cell.

source

pub fn pin_by_name(&self, name: &str) -> Option<PinRef<'a, N>>

Find a pin by it’s name.

source

pub fn each_net(&self) -> impl Iterator<Item = NetRef<'a, N>>

Iterate over all nets that live directly in this cell.

source

pub fn num_internal_nets(&self) -> usize

Get the number of nets inside this cell.

source

pub fn net_by_name(&self, name: &str) -> Option<NetRef<'a, N>>

Find a net by its name.

Trait Implementations§

source§

impl<'a, H> Clone for CellRef<'a, H>where H: HierarchyBase,

source§

fn clone(&self) -> CellRef<'a, H>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<'a, H> Debug for CellRef<'a, H>where H: HierarchyBase,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<'a, H> PartialEq<CellRef<'a, H>> for CellRef<'a, H>where H: HierarchyBase,

source§

fn eq(&self, other: &CellRef<'a, H>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<'a, H> Eq for CellRef<'a, H>where H: HierarchyBase,

Auto Trait Implementations§

§

impl<'a, H: ?Sized> RefUnwindSafe for CellRef<'a, H>where H: RefUnwindSafe, <H as HierarchyIds>::CellId: RefUnwindSafe,

§

impl<'a, H: ?Sized> Send for CellRef<'a, H>where H: Sync, <H as HierarchyIds>::CellId: Send,

§

impl<'a, H: ?Sized> Sync for CellRef<'a, H>where H: Sync, <H as HierarchyIds>::CellId: Sync,

§

impl<'a, H: ?Sized> Unpin for CellRef<'a, H>where <H as HierarchyIds>::CellId: Unpin,

§

impl<'a, H: ?Sized> UnwindSafe for CellRef<'a, H>where H: RefUnwindSafe, <H as HierarchyIds>::CellId: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

const: unstable · source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

const: unstable · source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
const: unstable · source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.