pub struct DelayParameters {
pub delays: Vec<i32>,
}Expand description
Delay parameters for DDA analysis These are the tau values passed directly to the -TAU CLI argument
Fields§
§delays: Vec<i32>List of delay values (tau) passed directly to the binary Example: [1, 2, 3, 4, 5] will be passed as -TAU 1 2 3 4 5
Trait Implementations§
Source§impl Clone for DelayParameters
impl Clone for DelayParameters
Source§fn clone(&self) -> DelayParameters
fn clone(&self) -> DelayParameters
Returns a duplicate 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 DelayParameters
impl Debug for DelayParameters
Source§impl<'de> Deserialize<'de> for DelayParameters
impl<'de> Deserialize<'de> for DelayParameters
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for DelayParameters
impl RefUnwindSafe for DelayParameters
impl Send for DelayParameters
impl Sync for DelayParameters
impl Unpin for DelayParameters
impl UnwindSafe for DelayParameters
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