pub struct ZeroInterconnectDelayModel<D> { /* private fields */ }Expand description
Interconnect delay model which reports zero delay for a source and target terminal which belong to the same net and ‘no delay’ if the terminals don’t belong to the same net.
Implementations§
Source§impl<D> ZeroInterconnectDelayModel<D>
impl<D> ZeroInterconnectDelayModel<D>
Trait Implementations§
Source§impl<D> DelayBase for ZeroInterconnectDelayModel<D>where
D: DelayBase,
Delegate DelayModel implementation to self.delay_model.
impl<D> DelayBase for ZeroInterconnectDelayModel<D>where
D: DelayBase,
Delegate DelayModel implementation to self.delay_model.
Source§type Delay = <D as DelayBase>::Delay
type Delay = <D as DelayBase>::Delay
Type representing a delay.
This can be as simple as a
f64 or more complicated such as a probability distribution.Source§impl<D, N: NetlistBase> InterconnectDelayModel<N> for ZeroInterconnectDelayModel<D>where
D: DelayBase,
impl<D, N: NetlistBase> InterconnectDelayModel<N> for ZeroInterconnectDelayModel<D>where
D: DelayBase,
Source§fn interconnect_output(
&self,
netlist: &N,
source_terminal: &TerminalId<N>,
input_signal: &Self::Signal,
target_terminal: &TerminalId<N>,
output_load: &Self::Load,
) -> Option<Self::Signal>
fn interconnect_output( &self, netlist: &N, source_terminal: &TerminalId<N>, input_signal: &Self::Signal, target_terminal: &TerminalId<N>, output_load: &Self::Load, ) -> Option<Self::Signal>
Source§impl<D> LoadBase for ZeroInterconnectDelayModel<D>where
D: LoadBase,
impl<D> LoadBase for ZeroInterconnectDelayModel<D>where
D: LoadBase,
Source§impl<D> TimingBase for ZeroInterconnectDelayModel<D>where
D: TimingBase,
impl<D> TimingBase for ZeroInterconnectDelayModel<D>where
D: TimingBase,
Source§type Signal = <D as TimingBase>::Signal
type Signal = <D as TimingBase>::Signal
Representation of signals at input or output pins.
In case of the Non-linear delay model (NLDM) this could be a bundle of the slew rate
and the delay but also the polarity of the signal.
But this type could as well also be a statistical representation of a signal, e.g. a probability
distribution of arrival times.
Source§type LogicValue = <D as TimingBase>::LogicValue
type LogicValue = <D as TimingBase>::LogicValue
Type of logic value.
Typically this might be a three-valued type which represents logical
0, 1 and ‘unknown’.
The default is typically ‘unknown’.
This is used to specify static input signals when evaluating cell delays or constraints.Auto Trait Implementations§
impl<D> Freeze for ZeroInterconnectDelayModel<D>where
D: Freeze,
impl<D> RefUnwindSafe for ZeroInterconnectDelayModel<D>where
D: RefUnwindSafe,
impl<D> Send for ZeroInterconnectDelayModel<D>where
D: Send,
impl<D> Sync for ZeroInterconnectDelayModel<D>where
D: Sync,
impl<D> Unpin for ZeroInterconnectDelayModel<D>where
D: Unpin,
impl<D> UnwindSafe for ZeroInterconnectDelayModel<D>where
D: UnwindSafe,
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more