pub struct EventControlledTiming {
pub number_of_repetitions: u32,
pub repetition_period: Option<f64>,
}
Expand description
Event controlled timing parameters for an IPDU
Fields§
§number_of_repetitions: u32
The PDU will be sent (number of repetitions + 1) times. If number of repetitions is 0, then the PDU is sent exactly once.
repetition_period: Option<f64>
time in seconds between two transmissions of the PDU
Trait Implementations§
Source§impl Clone for EventControlledTiming
impl Clone for EventControlledTiming
Source§fn clone(&self) -> EventControlledTiming
fn clone(&self) -> EventControlledTiming
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 EventControlledTiming
impl Debug for EventControlledTiming
Source§impl PartialEq for EventControlledTiming
impl PartialEq for EventControlledTiming
impl StructuralPartialEq for EventControlledTiming
Auto Trait Implementations§
impl Freeze for EventControlledTiming
impl RefUnwindSafe for EventControlledTiming
impl Send for EventControlledTiming
impl Sync for EventControlledTiming
impl Unpin for EventControlledTiming
impl UnwindSafe for EventControlledTiming
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