Enum libreda_sta::models::ndlm_cell_delay::DelayModelType
source · pub enum DelayModelType {
Constant(Time),
NDLM,
}Expand description
Specify what delay model to use. This implementation of the NDLM delay model can also fall back to a constant delay model.
Variants§
Constant(Time)
Use the same constant delay for all delay arcs. Used for example for levelization.
NDLM
Use the non-linear delay model.
Trait Implementations§
source§impl Clone for DelayModelType
impl Clone for DelayModelType
source§fn clone(&self) -> DelayModelType
fn clone(&self) -> DelayModelType
Returns a copy of the value. Read more
1.0.0 · 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 DelayModelType
impl Debug for DelayModelType
source§impl PartialEq<DelayModelType> for DelayModelType
impl PartialEq<DelayModelType> for DelayModelType
source§fn eq(&self, other: &DelayModelType) -> bool
fn eq(&self, other: &DelayModelType) -> bool
This method tests for
self and other values to be equal, and is used
by ==.