pub struct Repeat {
pub repeat_interval: u64,
pub active_duration: u64,
pub offsets: Vec<u64>,
}
Expand description
Repeat times for timing information.
See RFC 4566 Section 5.10 for more details.
Fields§
§repeat_interval: u64
Repeat interval in seconds.
active_duration: u64
Duration of one repeat.
offsets: Vec<u64>
Offsets for the repeats from the start_time
.
Trait Implementations§
impl Eq for Repeat
impl StructuralPartialEq for Repeat
Auto Trait Implementations§
impl Freeze for Repeat
impl RefUnwindSafe for Repeat
impl Send for Repeat
impl Sync for Repeat
impl Unpin for Repeat
impl UnwindSafe for Repeat
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