pub struct PinRef<'a, N: NetlistBase + ?Sized> {
    pub(super) base: &'a N,
    pub(super) id: N::PinId,
}
Expand description

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

Fields§

§base: &'a N

Reference to the parent data structure.

§id: N::PinId

ID of the pin.

Implementations§

source§

impl<'a, L: L2NBase> PinRef<'a, L>

source

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

Iterate over all shapes attached to this pin.

source§

impl<'a, N: NetlistBase> PinRef<'a, N>

source

pub fn base(&self) -> &N

Access the base structure.

source

pub fn id(&self) -> N::PinId

Get the pin ID.

source

pub fn terminal_id(&self) -> TerminalId<N>

Get the terminal ID of this pin.

source

pub fn name(&self) -> N::NameType

Get the name of the pin.

source

pub fn direction(&self) -> Direction

Get the signal direction of the pin.

source

pub fn net(&self) -> Option<NetRef<'a, N>>

Get the net which is attached to the pin from inside the cell.

source

pub fn cell(&self) -> CellRef<'a, N>

Get the cell which contains this pin.

source

pub fn instance(&self, cell_inst: &N::CellInstId) -> PinInstRef<'a, N>

Find the instance of this pin in the given cell instance.

source

pub fn into_terminal(self) -> TerminalRef<'a, N>

Convert the pin reference into a terminal reference.

source

pub fn qname(&self, separator: &str) -> String

Create a qualified name. For pins: ‘cell_name:pin_name’

Trait Implementations§

source§

impl<'a, N: NetlistBase + ?Sized> Clone for PinRef<'a, N>

source§

fn clone(&self) -> Self

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, N: NetlistBase> From<PinRef<'a, N>> for TerminalRef<'a, N>

source§

fn from(p: PinRef<'a, N>) -> Self

Converts to this type from the input type.
source§

impl<'a, N: NetlistBase> PartialEq<PinRef<'a, N>> for PinRef<'a, N>

source§

fn eq(&self, other: &Self) -> 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, N: NetlistBase> Eq for PinRef<'a, N>

Auto Trait Implementations§

§

impl<'a, N: ?Sized> RefUnwindSafe for PinRef<'a, N>where N: RefUnwindSafe, <N as NetlistIds>::PinId: RefUnwindSafe,

§

impl<'a, N: ?Sized> Send for PinRef<'a, N>where N: Sync, <N as NetlistIds>::PinId: Send,

§

impl<'a, N: ?Sized> Sync for PinRef<'a, N>where N: Sync, <N as NetlistIds>::PinId: Sync,

§

impl<'a, N: ?Sized> Unpin for PinRef<'a, N>where <N as NetlistIds>::PinId: Unpin,

§

impl<'a, N: ?Sized> UnwindSafe for PinRef<'a, N>where N: RefUnwindSafe, <N as NetlistIds>::PinId: 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.

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.