pub struct RealTimeParameters {
pub delta_t: u16,
pub mpe_boundary: bool,
pub frame_boundary: bool,
pub prev_burst_size: u32,
}Expand description
Time-slicing / MPE-IFEC real-time parameters (TS 102 772 §5.3, Table 3).
32 bits: delta_t(12) | mpe_boundary(1) | frame_boundary(1)
| prev_burst_size(18). Same bit layout as the MPE-FEC variant but the
final two fields are mpe_boundary / prev_burst_size, not
table_boundary / address.
Fields§
§delta_t: u1612-bit delta_t — time until the start of the next burst.
mpe_boundary: boolmpe_boundary flag.
frame_boundary: boolframe_boundary flag.
prev_burst_size: u3218-bit prev_burst_size.
Trait Implementations§
Source§impl Clone for RealTimeParameters
impl Clone for RealTimeParameters
Source§fn clone(&self) -> RealTimeParameters
fn clone(&self) -> RealTimeParameters
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for RealTimeParameters
Source§impl Debug for RealTimeParameters
impl Debug for RealTimeParameters
impl Eq for RealTimeParameters
Source§impl PartialEq for RealTimeParameters
impl PartialEq for RealTimeParameters
Source§fn eq(&self, other: &RealTimeParameters) -> bool
fn eq(&self, other: &RealTimeParameters) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RealTimeParameters
impl Serialize for RealTimeParameters
impl StructuralPartialEq for RealTimeParameters
Auto Trait Implementations§
impl Freeze for RealTimeParameters
impl RefUnwindSafe for RealTimeParameters
impl Send for RealTimeParameters
impl Sync for RealTimeParameters
impl Unpin for RealTimeParameters
impl UnsafeUnpin for RealTimeParameters
impl UnwindSafe for RealTimeParameters
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